// // Created by Imanol on 28-may-16. // #ifndef NAGIOS_PLUGINS_AUXILIAR_H #define NAGIOS_PLUGINS_AUXILIAR_H #include #include #include #include #include #include using namespace std; extern char *servicename; int str2int(string str); string int2str(int x); int exec(string cmd, string *output); void timer_handler (int signum); class integerConversionException : public exception { private: string s; public: integerConversionException(std::string ss) : s(ss) {} ~integerConversionException() throw () {} const char* what() const throw() { return s.c_str(); } }; #endif //NAGIOS_PLUGINS_AUXILIAR_H