AlpacaLibary  1.63
A closed source C++ bot for OSRS
LinkedList.hpp
Go to the documentation of this file.
1 #ifndef LINKEDLIST_HPP_INCLUDED
2 #define LINKEDLIST_HPP_INCLUDED
3 
4 #include "../JavaClass/Object.hpp"
5 #include "../JavaClass/Class.hpp"
6 #include "Node.hpp"
7 
8 namespace Internal
9 {
10  class LinkedList : public Object
11  {
12  public:
13  LinkedList(const void* Obj);
14 
15  LinkedList() = default;
16  LinkedList(LinkedList&& Obj) = default;
17  LinkedList(const LinkedList& Obj) = default;
19  LinkedList& operator=(const LinkedList& Obj) = default;
20 
21  static Class GetClass();
22 
23  Node GetHead() const;
24  Node GetTail() const;
25 
26  };
27 }
28 
29 #endif // LINKEDLIST_HPP_INCLUDED
LinkedList & operator=(const LinkedList &Obj)=default
Node GetTail() const
LinkedList(const void *Obj)
LinkedList(LinkedList &&Obj)=default
static Class GetClass()
LinkedList(const LinkedList &Obj)=default
LinkedList & operator=(LinkedList &&Obj)=default
Node GetHead() const