AlpacaLibrary/Include/Core/Classes/Deque.hpp

25 lines
458 B
C++
Raw Normal View History

2017-12-25 23:49:48 +00:00
#ifndef DEQUE_HPP_INCLUDED
#define DEQUE_HPP_INCLUDED
#include "../JavaClass/Object.hpp"
#include "../JavaClass/Class.hpp"
#include "Node.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 Deque : public Object
{
public:
Deque();
Deque(const void* Obj);
Deque(const Deque& D);
static Class GetClass();
2017-12-25 23:49:48 +00:00
2018-03-18 14:38:29 +00:00
Node GetHead() const;
Node GetTail() 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 // DEQUE_HPP_INCLUDED