Parent Directory | Revision Log
Initial revision
1 | #ifndef __Button_H__ |
2 | #define __Button_H__ |
3 | |
4 | #include "../String/String.h" |
5 | #include "../LinkedList/StringLinkedList.h" |
6 | |
7 | class Button |
8 | { |
9 | |
10 | public: |
11 | |
12 | Button(); |
13 | ~Button(); |
14 | |
15 | |
16 | void create(); |
17 | void setValue(char* iValue); |
18 | void setName(char* iName); |
19 | String *getName(); |
20 | String *getValue(); |
21 | String *data; |
22 | int width; |
23 | |
24 | String *name; |
25 | String *value; |
26 | |
27 | private: |
28 | |
29 | |
30 | }; |
31 | |
32 | #endif |
root@recompile.se | ViewVC Help |
Powered by ViewVC 1.1.26 |