AlpacaLibrary/Include/Core/Classes/NameableContainer.hpp

33 lines
931 B
C++
Raw Normal View History

2018-02-24 12:59:53 +00:00
#ifndef NAMEABLECONTAINER_HPP_INCLUDED
#define NAMEABLECONTAINER_HPP_INCLUDED
#include "../JavaClass/Object.hpp"
#include "../JavaClass/Class.hpp"
#include <vector>
#include "Nameable.hpp"
2024-01-23 16:28:05 +00:00
#include <cstdint>
2018-02-24 12:59:53 +00:00
2018-03-18 14:38:29 +00:00
namespace Internal
2018-02-24 12:59:53 +00:00
{
2018-03-18 14:38:29 +00:00
class NameableContainer : public Object
{
public:
NameableContainer(const void* Obj);
2018-12-27 18:17:09 +00:00
NameableContainer() = default;
NameableContainer(NameableContainer&& Obj) = default;
NameableContainer(const NameableContainer& Obj) = default;
NameableContainer& operator=(NameableContainer&& Obj) = default;
NameableContainer& operator=(const NameableContainer& Obj) = default;
2018-03-18 14:38:29 +00:00
static Class GetClass();
2018-02-24 12:59:53 +00:00
2018-03-18 14:38:29 +00:00
std::vector<Nameable> GetNameables() const;
2018-03-22 01:15:01 +00:00
Nameable GetNameables(std::int32_t I) const;
2018-03-18 14:38:29 +00:00
std::int32_t GetSize() const;
2018-02-24 12:59:53 +00:00
2018-03-18 14:38:29 +00:00
};
}
2018-02-24 12:59:53 +00:00
#endif // NAMEABLECONTAINER_HPP_INCLUDED