#ifndef SET_HPP_INCLUDED #define SET_HPP_INCLUDED #include #include "Object.hpp" class Set : public Object { public: Set(); Set(void* Obj); Set(const Set& S); std::vector ToArray() const; }; #endif // SET_HPP_INCLUDED