/** * @file com_print_all_settings.cpp * @author Julian Iseringhausen * @date Mon May 30 12:43:54 2011 * * @brief Writes all relevant grid settings to standard output. * */ #ifdef HAVE_CONFIG_H #include #endif #include "base/command.hpp" #include "comm/comm.hpp" #include "mg.hpp" using namespace VMG; class VMGCommandPrintAllSettings : public Command { public: Request Run(Command::argument_vector arguments) { MPE_EVENT_BEGIN() MG::GetComm()->PrintAllSettings(); MPE_EVENT_END() return Continue; } static const char* Name() {return "PrintAllSettings";} static int Arguments() {return 0;} }; CREATE_INITIALIZER(VMGCommandPrintAllSettings)