AlpacaLibrary/Include/Core/Classes/Node.hpp

31 lines
661 B
C++
Raw Permalink 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(const void* Obj);
2018-12-27 18:17:09 +00:00
Node() = default;
Node(Node&& Obj) = default;
Node(const Node& Obj) = default;
Node& operator=(Node&& Obj) = default;
Node& operator=(const Node& Obj) = default;
2018-03-18 14:38:29 +00:00
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