#ifndef LINTERRA_SERVER_CMD_STOP_DECLARE #define LINTERRA_SERVER_CMD_STOP_DECLARE #include "command.h" namespace linterra { namespace server { class command_stop : public command { bool opt_file; void init(); public: command_stop(); virtual ~command_stop(); virtual const char* name() const; virtual const char* description() const; virtual int run(libconfig::Config& config, apr_getopt_t* opt); virtual void print_help(); }; }; // end namespace server }; // end namespace linterra #endif