AlpacaLibrary/Include/Core/JavaClass/Integer.hpp

26 lines
595 B
C++

#ifndef INTEGER_HPP_INCLUDED
#define INTEGER_HPP_INCLUDED
#include <cstdint>
#include "Object.hpp"
namespace Internal
{
class Integer : public Object
{
public:
Integer(const void* Obj);
Integer(std::int32_t Value);
Integer() = default;
Integer(Integer&& Obj) = default;
Integer(const Integer& Obj) = default;
Integer& operator=(Integer&& Obj) = default;
Integer& operator=(const Integer& Obj) = default;
std::int32_t GetIntValue() const;
};
}
#endif // INTEGER_HPP_INCLUDED