AlpacaLibrary/Include/Core/Classes/AbstractByteBuffer.hpp

26 lines
728 B
C++
Raw Permalink Normal View History

2018-03-24 23:54:43 +00:00
#ifndef ABSTRACTBYTEBUFFER_HPP_INCLUDED
#define ABSTRACTBYTEBUFFER_HPP_INCLUDED
#include "../JavaClass/Object.hpp"
#include "../JavaClass/Class.hpp"
namespace Internal
{
class AbstractByteBuffer : public Object
{
public:
AbstractByteBuffer(const void* Obj);
2018-12-27 18:17:09 +00:00
AbstractByteBuffer() = default;
AbstractByteBuffer(AbstractByteBuffer&& Obj) = default;
AbstractByteBuffer(const AbstractByteBuffer& Obj) = default;
AbstractByteBuffer& operator=(AbstractByteBuffer&& Obj) = default;
AbstractByteBuffer& operator=(const AbstractByteBuffer& Obj) = default;
2018-03-24 23:54:43 +00:00
static Class GetClass();
};
}
#endif // ABSTRACTBYTEBUFFER_HPP_INCLUDED