Parent Directory
|
Revision Log
Update copyright Add extra log for exception
| 1 | /*******************************************************/ |
| 2 | /* */ |
| 3 | /* LeafOK Innbbsd */ |
| 4 | /* */ |
| 5 | /* Copyright (C) LeafOK.com, 2003-2008 */ |
| 6 | /* */ |
| 7 | /* http://www.leafok.com */ |
| 8 | /* */ |
| 9 | /*******************************************************/ |
| 10 | |
| 11 | #pragma once |
| 12 | #include "base_active.h" |
| 13 | |
| 14 | class outd : |
| 15 | public base_active |
| 16 | { |
| 17 | public: |
| 18 | outd(void); |
| 19 | ~outd(void); |
| 20 | int work(); |
| 21 | int Startup(void); |
| 22 | int Shutdown(void); |
| 23 | bool IsShutdown(void); |
| 24 | protected: |
| 25 | int w_call(void); |
| 26 | private: |
| 27 | static bool thread_terminate; |
| 28 | }; |
| webmaster@leafok.com | ViewVC Help |
| Powered by ViewVC 1.3.0-beta1 |