AlpacaLibrary/Include/Core/Classes/Node.hpp

23 lines
423 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>
class Node : public Object
{
public:
Node();
Node(const void* Obj);
Node(const Node& N);
static Class GetClass();
Node GetNext() const;
Node GetPrev() const;
std::int64_t GetUID() const;
};
#endif // NODE_HPP_INCLUDED