tabbing
[iotcloud.git] / version2 / src / C / ByteBuffer.h
index a5b6dcf9b7bee044d468833af34a2a06cb3a18b3..89156066d19b33445a48e7e1c6ca61e4f0cdd0bd 100644 (file)
@@ -7,15 +7,15 @@ public:
        void put(char c);
        void putInt(int32_t l);
        void putLong(int64_t l);
        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();
        int64_t getLong();
        int32_t getInt();
        char get();
-       void get(Array<char> * array);
+       void get(Array<char> *array);
        void position(int32_t newPosition);
        void position(int32_t newPosition);
-       Array<char> * array();
- private:
+       Array<char> *array();
+private:
 };
 };
-ByteBuffer * ByteBuffer_wrap(Array<char> * array);
-ByteBuffer * ByteBuffer_allocate(uint size);
+ByteBuffer *ByteBuffer_wrap(Array<char> *array);
+ByteBuffer *ByteBuffer_allocate(uint size);
 #endif
 #endif