Parent Directory
|
Revision Log
Initial revision
| 1 | #ifndef __DateTime_H__ |
| 2 | #define __DateTime_H__ |
| 3 | |
| 4 | class DateTime |
| 5 | { |
| 6 | |
| 7 | public: |
| 8 | |
| 9 | DateTime(int iOption); |
| 10 | DateTime(int iOption, long t); |
| 11 | ~DateTime(); |
| 12 | |
| 13 | char *get(int option); |
| 14 | char *get(int option, long t); |
| 15 | char *buffer; |
| 16 | int length; |
| 17 | |
| 18 | int option; |
| 19 | |
| 20 | |
| 21 | }; |
| 22 | |
| 23 | #endif |
| root@recompile.se | ViewVC Help |
| Powered by ViewVC 1.1.26 |