1 |
afaq |
1.1 |
#ifndef _ClientDataStructure_hpp_
|
2 |
|
|
#define _ClientDataStructure_hpp_
|
3 |
|
|
|
4 |
|
|
#include "Message.hpp"
|
5 |
|
|
#include "common.hpp"
|
6 |
|
|
#include "Util.hpp"
|
7 |
|
|
|
8 |
|
|
class ClientDataStructure {
|
9 |
|
|
public:
|
10 |
|
|
|
11 |
|
|
ClientDataStructure();
|
12 |
|
|
~ClientDataStructure();
|
13 |
|
|
virtual int makeMessage(Message& messageOut){};
|
14 |
|
|
virtual int readInMessage(Message& messageIn, std::string lisName, int index){};
|
15 |
|
|
//virtual int readInMessage(Message* messageIn){};
|
16 |
|
|
Dictionary* getSchema(void);
|
17 |
|
|
|
18 |
|
|
|
19 |
|
|
protected:
|
20 |
|
|
//Message messageOut;
|
21 |
|
|
Dictionary Schema;
|
22 |
|
|
Util util;
|
23 |
|
|
//bool messageNotCreated;
|
24 |
|
|
};
|
25 |
|
|
|
26 |
|
|
|
27 |
|
|
#endif
|