AlpacaLibrary/Include/Core/JavaClass/Object.hpp

24 lines
542 B
C++
Raw Normal View History

2017-12-25 23:49:48 +00:00
#ifndef OBJECT_HPP_INCLUDED
#define OBJECT_HPP_INCLUDED
class Class;
class Object
{
public:
void* Obj;
Object();
Object(const void* Obj);
Object(const Object& O);
Object& operator=(const Object& O);
bool operator==(const Object& O) const;
bool operator!=(const Object& O) const;
bool Equals(Object O) const;
bool InstanceOf(Class C) const;
operator bool() const;
operator void*() const;
virtual ~Object();
};
#endif // OBJECT_HPP_INCLUDED