AlpacaLibary  1.63
A closed source C++ bot for OSRS
AbstractByteBuffer.hpp
Go to the documentation of this file.
1 #ifndef ABSTRACTBYTEBUFFER_HPP_INCLUDED
2 #define ABSTRACTBYTEBUFFER_HPP_INCLUDED
3 
4 #include "../JavaClass/Object.hpp"
5 #include "../JavaClass/Class.hpp"
6 
7 namespace Internal
8 {
9  class AbstractByteBuffer : public Object
10  {
11  public:
12  AbstractByteBuffer(const void* Obj);
13 
14  AbstractByteBuffer() = default;
19 
20  static Class GetClass();
21 
22  };
23 }
24 
25 #endif // ABSTRACTBYTEBUFFER_HPP_INCLUDED
AbstractByteBuffer(AbstractByteBuffer &&Obj)=default
AbstractByteBuffer(const void *Obj)
AbstractByteBuffer & operator=(AbstractByteBuffer &&Obj)=default
AbstractByteBuffer(const AbstractByteBuffer &Obj)=default
AbstractByteBuffer & operator=(const AbstractByteBuffer &Obj)=default