Parent Directory
|
Revision Log
Update copyright Add extra log for exception
| 1 | sysadm | 1.1 | /*******************************************************/ |
| 2 | /* */ | ||
| 3 | sysadm | 1.2 | /* LeafOK Innbbsd */ |
| 4 | sysadm | 1.1 | /* */ |
| 5 | sysadm | 1.4 | /* Copyright (C) LeafOK.com, 2003-2008 */ |
| 6 | sysadm | 1.1 | /* */ |
| 7 | sysadm | 1.4 | /* http://www.leafok.com */ |
| 8 | sysadm | 1.1 | /* */ |
| 9 | /*******************************************************/ | ||
| 10 | |||
| 11 | #pragma once | ||
| 12 | |||
| 13 | #include <fstream> | ||
| 14 | |||
| 15 | using namespace std; | ||
| 16 | |||
| 17 | class logfile | ||
| 18 | : public basic_ofstream<char,std::char_traits<char> > | ||
| 19 | { | ||
| 20 | public: | ||
| 21 | logfile(void); | ||
| 22 | ~logfile(void); | ||
| 23 | static logfile& log_head(logfile& logfile); | ||
| 24 | logfile& operator<<(logfile& fun(logfile&)); | ||
| 25 | }; |
| webmaster@leafok.com | ViewVC Help |
| Powered by ViewVC 1.3.0-beta1 |