AlpacaLibrary/Include/Core/JavaClass/Map.hpp

19 lines
323 B
C++
Raw Normal View History

2017-12-25 23:49:48 +00:00
#ifndef MAP_HPP_INCLUDED
#define MAP_HPP_INCLUDED
#include <cstdint>
#include "Object.hpp"
#include "Set.hpp"
class Map : public Object
{
public:
Map();
Map(void* Obj);
Map(const Map& M);
Object GetValue(Object Key) const;
Set GetKeySet() const;
};
#endif // MAP_HPP_INCLUDED