Parent Directory | Revision Log
First import
1 | #ifndef __ObjectLinkElement_H__ |
2 | #define __ObjectLinkElement_H__ |
3 | |
4 | #include "ObjectElement.h" |
5 | #include "../System/SystemDefine.h" |
6 | #include "../String/StringTools.h" |
7 | #include "../String/String.h" |
8 | |
9 | class ObjectLinkElement |
10 | { |
11 | |
12 | public: |
13 | |
14 | ObjectLinkElement(const String &iData); |
15 | ~ObjectLinkElement(); |
16 | |
17 | String *data; |
18 | ObjectLinkElement *leftChild; |
19 | ObjectLinkElement *rightChild; |
20 | |
21 | |
22 | }; |
23 | |
24 | #endif |
root@recompile.se | ViewVC Help |
Powered by ViewVC 1.1.26 |