edits
[iotcloud.git] / version2 / src / C / LocalComm.h
1 #ifndef LOCALCOMM_H
2 #define LOCALCOMM_H
3 #include "common.h"
4
5 class LocalComm {
6 private:
7         Table *t1;
8         Table *t2;
9
10 public:
11         LocalComm(Table *_t1, Table *_t2) :
12                 t1(_t1),
13                 t2(_t2) {
14         }
15
16         Array<char> *sendDataToLocalDevice(int64_t deviceId, Array<char> *data);
17 };
18 #endif