AlpacaLibrary/Include/Core/JavaClass/Map.hpp

27 lines
553 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"
2018-12-27 18:17:09 +00:00
namespace Internal
2017-12-25 23:49:48 +00:00
{
2018-12-27 18:17:09 +00:00
class Map : public Object
{
public:
Map(const void* Obj);
Map() = default;
Map(Map&& Obj) = default;
Map(const Map& Obj) = default;
Map& operator=(Map&& Obj) = default;
Map& operator=(const Map& Obj) = default;
Object GetValue(Object Key) const;
Set GetKeySet() const;
};
}
2017-12-25 23:49:48 +00:00
#endif // MAP_HPP_INCLUDED