AlpacaLibrary/Include/Core/Classes/NameableContainer.hpp

23 lines
543 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"
class NameableContainer : public Object
{
public:
NameableContainer();
NameableContainer(const void* Obj);
NameableContainer(const NameableContainer& N);
static Class GetClass();
std::vector<Nameable> GetNameables() const;
std::int32_t GetSize() const;
};
#endif // NAMEABLECONTAINER_HPP_INCLUDED