dispatchers.h 812 B

12345678910111213141516171819202122232425262728293031323334353637
  1. #ifndef DISPATCHERS_H
  2. #define DISPATCHERS_H
  3. class Dispatch;
  4. #include "session.h"
  5. // How does this call another?
  6. // How does it return a result?
  7. class Dispatch {
  8. protected:
  9. Session &sess;
  10. public:
  11. Dispatch(Session &);
  12. virtual ~Dispatch();
  13. virtual void server_line(const std::string &line) = 0;
  14. virtual void server_prompt(const std::string &prompt) = 0;
  15. virtual void client_input(const std::string &input) = 0;
  16. const std::string &get_prompt(void);
  17. void to_server(const std::string &send);
  18. void to_client(const std::string &send);
  19. };
  20. class CoreDispatch : public Dispatch {
  21. public:
  22. CoreDispatch(Session &);
  23. void server_line(const std::string &line) override;
  24. void server_prompt(const std::string &prompt) override;
  25. void client_input(const std::string &input) override;
  26. };
  27. #endif