AlpacaLibrary/Include/Core/Classes/Node.hpp

26 lines
490 B
C++
Raw Normal View History

2017-12-25 23:49:48 +00:00
#ifndef NODE_HPP_INCLUDED
#define NODE_HPP_INCLUDED
#include "../JavaClass/Object.hpp"
#include "../JavaClass/Class.hpp"
#include <cstdint>
2018-03-18 14:38:29 +00:00
namespace Internal
2017-12-25 23:49:48 +00:00
{
2018-03-18 14:38:29 +00:00
class Node : public Object
{
public:
Node();
Node(const void* Obj);
Node(const Node& N);
static Class GetClass();
2017-12-25 23:49:48 +00:00
2018-03-18 14:38:29 +00:00
Node GetNext() const;
Node GetPrev() const;
std::int64_t GetUID() const;
2017-12-25 23:49:48 +00:00
2018-03-18 14:38:29 +00:00
};
}
2017-12-25 23:49:48 +00:00
#endif // NODE_HPP_INCLUDED