AlpacaLibrary/Include/Core/Classes/IndexableData.hpp

31 lines
899 B
C++
Raw Permalink Normal View History

2018-03-20 16:16:11 +00:00
#ifndef INDEXABLEDATA_HPP_INCLUDED
#define INDEXABLEDATA_HPP_INCLUDED
#include "../JavaClass/Object.hpp"
#include "../JavaClass/Class.hpp"
#include <vector>
2018-03-22 01:15:01 +00:00
#include <cstdint>
2018-03-20 16:16:11 +00:00
namespace Internal
{
class IndexableData : public Object
{
public:
IndexableData(const void* Obj);
2018-12-27 18:17:09 +00:00
IndexableData() = default;
IndexableData(IndexableData&& Obj) = default;
IndexableData(const IndexableData& Obj) = default;
IndexableData& operator=(IndexableData&& Obj) = default;
IndexableData& operator=(const IndexableData& Obj) = default;
2018-03-20 16:16:11 +00:00
static Class GetClass();
std::vector<std::vector<Object>> GetChildren() const;
2018-03-22 01:15:01 +00:00
std::vector<Object> GetChildren(std::int32_t I) const;
Object GetChildren(std::int32_t I, std::int32_t II) const;
2018-03-20 16:16:11 +00:00
};
}
#endif // INDEXABLEDATA_HPP_INCLUDED