ServerCommands.h 229 B

12345678910111213141516171819
  1. #ifndef SERVERCOMMANDS_H
  2. #define SERVERCOMMANDS_H
  3. #include <atomic>
  4. class ServerCommands
  5. {
  6. public:
  7. ServerCommands();
  8. bool isRunning() const;
  9. void stop();
  10. private:
  11. std::atomic_bool running;
  12. };
  13. #endif