AlpacaLibrary/Include/Core/Classes/Queue.hpp

21 lines
383 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"
class Queue : public Object
{
public:
Queue();
Queue(const void* Obj);
Queue(const Queue& Q);
static Class GetClass();
CacheableNode GetHead() const;
};
#endif // QUEUE_HPP_INCLUDED