Rev 1326 | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | SVN | RSS feed
| Rev 1326 | Rev 1328 | ||
|---|---|---|---|
| Line 13... | Line 13... | ||
| 13 | #include "message/Datatype.h" |
13 | #include "message/Datatype.h" |
| 14 | #include "message/BitBuffer.h" |
14 | #include "message/BitBuffer.h" |
| 15 | #include "protocol/Protocol.h" |
15 | #include "protocol/Protocol.h" |
| 16 | #include "utils/convert.h" |
16 | #include "utils/convert.h" |
| 17 | #include "xml/Node.h" |
17 | #include "xml/Node.h" |
| - | 18 | #include "log/Logger.h" |
|
| 18 | 19 | ||
| 19 | namespace atom { |
20 | namespace atom { |
| 20 | namespace message { |
21 | namespace message { |
| 21 | 22 | ||
| 22 | using namespace std; |
23 | using namespace std; |
| Line 37... | Line 38... | ||
| 37 | void writeBits(BitBuffer & buffer); |
38 | void writeBits(BitBuffer & buffer); |
| 38 | 39 | ||
| 39 | string toString(); |
40 | string toString(); |
| 40 | 41 | ||
| 41 | private: |
42 | private: |
| - | 43 | log::Logger LOG; |
|
| - | 44 | ||
| 42 | string myName; |
45 | string myName; |
| 43 | Datatype::pointer myDatatype; |
46 | Datatype::pointer myDatatype; |
| 44 | bool myRequired; |
47 | bool myRequired; |
| 45 | string myUnit; |
48 | string myUnit; |
| 46 | }; |
49 | }; |