cmd_get_stat.h 236 B

1234567891011121314
  1. #pragma once
  2. #include <command.h>
  3. class cmd_get_stat : public command {
  4. public:
  5. cmd_get_stat();
  6. ~cmd_get_stat();
  7. protected:
  8. virtual command_type get_command() override;
  9. virtual response perform(request *req) override;
  10. };