AlpacaLibrary/Include/Core/Classes/Ignore.hpp

21 lines
368 B
C++
Raw 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();
Ignore(const void* Obj);
Ignore(const Ignore& I);
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