Main Page   Class Hierarchy   Alphabetical List   Compound List   File List   Compound Members   File Members  

Handler.h

Go to the documentation of this file.
00001 #ifndef _HANDLER_H_
00002 #define _HANDLER_H_
00003 
00004 /*
00005  * Abstract interface for signal handlers.  Specifies the
00006  * method to call on catching a signal.  Used with the 
00007  * SignalHandler class.
00008  */
00009 class Handler {
00010 public:
00011   virtual void handle() = 0;
00012 };
00013 
00014 #endif  // _HANDLER_H_

Generated on Mon Oct 7 09:33:29 2002 for Gaia by doxygen1.2.13.1 written by Dimitri van Heesch, © 1997-2001