/* * Code from: Philipp Meinen * Copyright (C): 2003-2004 Philipp Meinen * * Email: lancelot@lancelot2k.dyndns.org * Homepage: http://lancelot2k.dyndns.org * License: GPL * */ #ifndef _SIGNALS_H_ #define _SIGNALS_H_ 1 #include #include "config.h" #include "classes.h" #include "functions.h" void sig_handler(int signum); /* function which we can call from signal() */ class SigHandler { private: public: SigHandler(void); ~SigHandler(void); void on_sigwinch(void); }; #endif