AlpacaLibrary/Include/Core/Classes/HashTable.hpp

25 lines
527 B
C++
Raw Normal View History

2017-12-25 23:49:48 +00:00
#ifndef HASHTABLE_HPP_INCLUDED
#define HASHTABLE_HPP_INCLUDED
#include "../JavaClass/Object.hpp"
#include "../JavaClass/Class.hpp"
#include <vector>
#include "Node.hpp"
#include <cstdint>
class HashTable : public Object
{
public:
HashTable();
HashTable(const void* Obj);
HashTable(const HashTable& H);
static Class GetClass();
std::vector<Node> GetBuckets() const;
std::int32_t GetIndex() const;
std::int32_t GetSize() const;
};
#endif // HASHTABLE_HPP_INCLUDED