AlpacaLibary  1.63
A closed source C++ bot for OSRS
Map.hpp
Go to the documentation of this file.
1 #ifndef MAP_HPP_INCLUDED
2 #define MAP_HPP_INCLUDED
3 
4 #include <cstdint>
5 #include "Object.hpp"
6 #include "Set.hpp"
7 
8 namespace Internal
9 {
10  class Map : public Object
11  {
12  public:
13  Map(const void* Obj);
14 
15  Map() = default;
16  Map(Map&& Obj) = default;
17  Map(const Map& Obj) = default;
18  Map& operator=(Map&& Obj) = default;
19  Map& operator=(const Map& Obj) = default;
20 
22  Set GetKeySet() const;
23  };
24 }
25 
26 #endif // MAP_HPP_INCLUDED
Key
Definition: Input.hpp:24
Map & operator=(Map &&Obj)=default
Object GetValue(Object Key) const
Map()=default
Map(Map &&Obj)=default
Map(const Map &Obj)=default
Set GetKeySet() const
Map(const void *Obj)
Map & operator=(const Map &Obj)=default