#ifndef IGNORE_HPP_INCLUDED #define IGNORE_HPP_INCLUDED #include "../JavaClass/Object.hpp" #include "../JavaClass/Class.hpp" #include 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