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