AlpacaLibrary/Include/Core/Classes/AbstractByteBuffer.hpp

21 lines
473 B
C++
Raw 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();
AbstractByteBuffer(const void* Obj);
AbstractByteBuffer(const AbstractByteBuffer& A);
static Class GetClass();
};
}
#endif // ABSTRACTBYTEBUFFER_HPP_INCLUDED