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