00001 /*************************************************************************** 00002 event_handler.h - description 00003 ------------------- 00004 begin : Fre Mär 14 2003 00005 copyright : (C) 2003 by Bernd Roessler 00006 email : roessler@informatik.uni-hamburg.de 00007 ***************************************************************************/ 00008 00009 #ifndef EVENT_HANDLER_H 00010 #define EVENT_HANDLER_H 00011 00012 00017 class Event_Handler { 00018 public: 00019 Event_Handler(); 00020 virtual ~Event_Handler(); 00021 00022 // Hook method for the signal hook method. 00023 virtual void handle_signal (int signum) = 0; 00024 00025 // ... other hook methods for other types of 00026 // events such as timers, I/O, and 00027 // synchronization objects. 00028 }; 00029 00030 #endif
![]() |
Generated Wed Aug 16 14:57:09 2006 by
![]() |