AlpacaLibrary/Include/Core/Classes/CacheableNode.hpp

29 lines
728 B
C++
Raw Permalink Normal View History

2017-12-25 23:49:48 +00:00
#ifndef CACHEABLENODE_HPP_INCLUDED
#define CACHEABLENODE_HPP_INCLUDED
#include "Node.hpp"
#include "../JavaClass/Class.hpp"
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 CacheableNode : public Node
{
public:
CacheableNode(const void* Obj);
2018-12-27 18:17:09 +00:00
CacheableNode() = default;
CacheableNode(CacheableNode&& Obj) = default;
CacheableNode(const CacheableNode& Obj) = default;
CacheableNode& operator=(CacheableNode&& Obj) = default;
CacheableNode& operator=(const CacheableNode& 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
CacheableNode GetNext() const;
CacheableNode GetPrev() 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 // CACHEABLENODE_HPP_INCLUDED