edits
[iotcloud.git] / version2 / src / C / ByteBuffer.h
index a89ca243613ca1cefc6d560adef3b8991232e942..89156066d19b33445a48e7e1c6ca61e4f0cdd0bd 100644 (file)
@@ -7,11 +7,15 @@ public:
        void put(char c);
        void putInt(int32_t l);
        void putLong(int64_t l);
-       void put(Array<char> * array);
+       void put(Array<char> *array);
        int64_t getLong();
        int32_t getInt();
        char get();
-       void get(Array<char> * array);
- private:
+       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