Parent Directory
|
Revision Log
Initial revision
| 1 | #ifndef __IntElement_H__ |
| 2 | #define __IntElement_H__ |
| 3 | |
| 4 | class IntElement |
| 5 | { |
| 6 | |
| 7 | public: |
| 8 | |
| 9 | IntElement(int iValue); |
| 10 | ~IntElement(); |
| 11 | |
| 12 | int value; |
| 13 | IntElement *next; |
| 14 | IntElement *previos; |
| 15 | |
| 16 | }; |
| 17 | |
| 18 | #endif |
| root@recompile.se | ViewVC Help |
| Powered by ViewVC 1.1.26 |