edits
[iotcloud.git] / version2 / src / C / ByteBuffer.h
index 2c87e445280bbe5bd454e6aad593e8fc71be92bb..a5b6dcf9b7bee044d468833af34a2a06cb3a18b3 100644 (file)
@@ -3,10 +3,19 @@
 #include "common.h"
 
 class ByteBuffer {
- public:
+public:
        void put(char c);
+       void putInt(int32_t l);
        void putLong(int64_t l);
+       void put(Array<char> * array);
        int64_t getLong();
+       int32_t getInt();
+       char get();
+       void get(Array<char> * array);
+       void position(int32_t newPosition);
+       Array<char> * array();
  private:
 };
+ByteBuffer * ByteBuffer_wrap(Array<char> * array);
+ByteBuffer * ByteBuffer_allocate(uint size);
 #endif