AlpacaLibrary/Include/Core/Classes/FriendList.hpp

26 lines
625 B
C++
Raw Permalink Normal View History

2018-02-24 12:59:53 +00:00
#ifndef FRIENDLIST_HPP_INCLUDED
#define FRIENDLIST_HPP_INCLUDED
#include "NameableContainer.hpp"
#include "../JavaClass/Class.hpp"
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 FriendList : public NameableContainer
{
public:
FriendList(const void* Obj);
2018-12-27 18:17:09 +00:00
FriendList() = default;
FriendList(FriendList&& Obj) = default;
FriendList(const FriendList& Obj) = default;
FriendList& operator=(FriendList&& Obj) = default;
FriendList& operator=(const FriendList& 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
};
}
2018-02-24 12:59:53 +00:00
#endif // FRIENDLIST_HPP_INCLUDED