dispatchers.h 775 B

12345678910111213141516171819202122232425262728293031323334
  1. #ifndef DISPATCHERS_H
  2. #define DISPATCHERS_H
  3. #include "director.h"
  4. // possibly setup a timer to call Dispatch.
  5. class Dispatch {
  6. protected:
  7. OldValues original;
  8. Director &d;
  9. public:
  10. Dispatch(Director &);
  11. virtual void server_line(const std::string &line) = 0;
  12. virtual void server_prompt(const std::string &prompt) = 0;
  13. virtual void client_input(const std::string &input) = 0;
  14. const std::string &get_prompt(void);
  15. void to_server(const std::string &send);
  16. void to_client(const std::string &send);
  17. };
  18. class CoreDispatch : public Dispatch {
  19. public:
  20. CoreDispatch(Director &d);
  21. void server_line(const std::string &line) override;
  22. void server_prompt(const std::string &prompt) override;
  23. void client_input(const std::string &input) override;
  24. };
  25. #endif