2c87e445280bbe5bd454e6aad593e8fc71be92bb
[iotcloud.git] / version2 / src / C / ByteBuffer.h
1 #ifndef BYTEBUFFER_H
2 #define BYTEBUFFER_H
3 #include "common.h"
4
5 class ByteBuffer {
6  public:
7         void put(char c);
8         void putLong(int64_t l);
9         int64_t getLong();
10  private:
11 };
12 #endif