Main Page | Class Hierarchy | Class List | File List | Class Members | File Members | Related Pages

SignalStrategy.h

Go to the documentation of this file.
00001 00030 #ifndef SIGNALSTRATEGY_H 00031 #define SIGNALSTRATEGY_H 00032 00033 #include <signal.h> 00034 #include "SysHook.h" 00035 00046 class SignalStrategy 00047 { 00048 public: 00049 00062 virtual int handle_strategy( 00063 int sig, 00064 siginfo_t* info, 00065 void* context, 00066 SysHook& app_hook 00067 ) = 0; 00068 }; 00069 #endif 00070