#ifndef _WATCHDOG_EVALUATOR_HPP_ #define _WATCHDOG_EVALUATOR_HPP_ #ifndef _COMMON_REGKEY_HPP_ #include #endif #ifndef _COMMON_PROCESS_HPP_ #include #endif #ifndef _SMTP_SMTPCLIENT_HPP_ #include #endif class Evaluator { public: static void evaluate(void); private: static bool getAppKeys(Block &keys); static bool getNotifyKeys(Block &keys); static void evaluateAppKeys(Block &keys); static void evaluateNotifyKeys(Block &keys); Evaluator(); virtual ~Evaluator(); }; #endif