AlpacaLibrary/Include/Core/JavaClass/Set.hpp

25 lines
500 B
C++
Raw Normal View History

2017-12-25 23:49:48 +00:00
#ifndef SET_HPP_INCLUDED
#define SET_HPP_INCLUDED
#include <vector>
#include "Object.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 Set : public Object
{
public:
Set(const void* Obj);
Set() = default;
Set(Set&& Obj) = default;
Set(const Set& Obj) = default;
Set& operator=(Set&& Obj) = default;
Set& operator=(const Set& Obj) = default;
std::vector<Object> ToArray() const;
};
}
2017-12-25 23:49:48 +00:00
#endif // SET_HPP_INCLUDED