AlpacaLibrary/Include/Core/Classes/IndexableData.hpp

26 lines
686 B
C++
Raw 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();
IndexableData(const void* Obj);
IndexableData(const IndexableData& IndexableData);
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