AlpacaLibrary/Include/Core/Classes/Ignore.hpp

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

2017-12-25 23:49:48 +00:00
#ifndef IGNORE_HPP_INCLUDED
#define IGNORE_HPP_INCLUDED
2018-02-24 12:59:53 +00:00
#include "Nameable.hpp"
2017-12-25 23:49:48 +00:00
#include "../JavaClass/Class.hpp"
2018-03-18 14:38:29 +00:00
namespace Internal
2017-12-25 23:49:48 +00:00
{
2018-03-18 14:38:29 +00:00
class Ignore : public Nameable
{
public:
Ignore(const void* Obj);
2018-12-27 18:17:09 +00:00
Ignore() = default;
Ignore(Ignore&& Obj) = default;
Ignore(const Ignore& Obj) = default;
Ignore& operator=(Ignore&& Obj) = default;
Ignore& operator=(const Ignore& Obj) = default;
2018-03-18 14:38:29 +00:00
static Class GetClass();
2017-12-25 23:49:48 +00:00
2018-03-18 14:38:29 +00:00
};
}
2017-12-25 23:49:48 +00:00
#endif // IGNORE_HPP_INCLUDED