1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
#ifndef SIGN_H #define SIGN_H #include "incl.h" #include <signal.h> class sign { private: static void clean_template_cache(int i_param); #ifdef CTCSEGV static void sigsev_received(int i_param); #endif public: static void init_signal_handlers(); static void terminate_received(int i_param); }; #endif