AlpacaLibrary/Include/Core/JavaClass/Integer.hpp

18 lines
341 B
C++
Raw Normal View History

2017-12-25 23:49:48 +00:00
#ifndef INTEGER_HPP_INCLUDED
#define INTEGER_HPP_INCLUDED
#include <cstdint>
#include "Object.hpp"
class Integer : public Object
{
public:
Integer();
Integer(void* Obj);
Integer(const Integer& I);
Integer(std::int32_t Value);
std::int32_t GetIntValue() const;
};
#endif // INTEGER_HPP_INCLUDED