#ifndef HASHTABLE_HPP_INCLUDED #define HASHTABLE_HPP_INCLUDED #include "../JavaClass/Object.hpp" #include "../JavaClass/Class.hpp" #include #include "Node.hpp" #include class HashTable : public Object { public: HashTable(); HashTable(const void* Obj); HashTable(const HashTable& H); static Class GetClass(); std::vector GetBuckets() const; std::int32_t GetIndex() const; std::int32_t GetSize() const; }; #endif // HASHTABLE_HPP_INCLUDED