AlpacaLibrary/Include/Core/Classes/Cache.hpp

23 lines
433 B
C++
Raw Normal View History

2017-12-25 23:49:48 +00:00
#ifndef CACHE_HPP_INCLUDED
#define CACHE_HPP_INCLUDED
#include "../JavaClass/Object.hpp"
#include "../JavaClass/Class.hpp"
#include "HashTable.hpp"
#include "Queue.hpp"
class Cache : public Object
{
public:
Cache();
Cache(const void* Obj);
Cache(const Cache& C);
static Class GetClass();
HashTable GetHashTable() const;
Queue GetQueue() const;
};
#endif // CACHE_HPP_INCLUDED