AlpacaLibrary/Include/Core/Classes/Queue.hpp

29 lines
619 B
C++
Raw Normal View History

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