dispatchers.h 790 B

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