Parent Directory | Revision Log
First import
1 | #ifndef __Link_H__ |
2 | #define __Link_H__ |
3 | |
4 | #include "../String/String.h" |
5 | #include "../LinkedList/StringLinkedList.h" |
6 | |
7 | class Link |
8 | { |
9 | |
10 | public: |
11 | |
12 | Link(); |
13 | ~Link(); |
14 | |
15 | void create(); |
16 | String *data; |
17 | String *filePath; |
18 | String *info; |
19 | String *picturePath; |
20 | |
21 | private: |
22 | |
23 | |
24 | }; |
25 | |
26 | #endif |
root@recompile.se | ViewVC Help |
Powered by ViewVC 1.1.26 |