#ifndef INDEXABLEDATA_HPP_INCLUDED #define INDEXABLEDATA_HPP_INCLUDED #include "../JavaClass/Object.hpp" #include "../JavaClass/Class.hpp" #include #include namespace Internal { class IndexableData : public Object { public: IndexableData(); IndexableData(const void* Obj); IndexableData(const IndexableData& IndexableData); static Class GetClass(); std::vector> GetChildren() const; std::vector GetChildren(std::int32_t I) const; Object GetChildren(std::int32_t I, std::int32_t II) const; }; } #endif // INDEXABLEDATA_HPP_INCLUDED