AlpacaLibrary/Include/Core/Classes/Ignore.hpp

22 lines
423 B
C++

#ifndef IGNORE_HPP_INCLUDED
#define IGNORE_HPP_INCLUDED
#include "../JavaClass/Object.hpp"
#include "../JavaClass/Class.hpp"
#include <string>
class Ignore : public Object
{
public:
Ignore();
Ignore(const void* Obj);
Ignore(const Ignore& I);
static Class GetClass();
std::string GetName() const;
std::string GetPreviousName() const;
};
#endif // IGNORE_HPP_INCLUDED