12345678910111213141516171819202122232425262728293031323334 |
- #ifndef DISPATCHERS_H
- #define DISPATCHERS_H
- #include "director.h"
- // possibly setup a timer to call Dispatch.
- class Dispatch {
- protected:
- OldValues original;
- Director &d;
- public:
- Dispatch(Director &);
- virtual void server_line(const std::string &line) = 0;
- virtual void server_prompt(const std::string &prompt) = 0;
- virtual void client_input(const std::string &input) = 0;
- const std::string &get_prompt(void);
- void to_server(const std::string &send);
- void to_client(const std::string &send);
- };
- class CoreDispatch : public Dispatch {
- public:
- CoreDispatch(Director &d);
- void server_line(const std::string &line) override;
- void server_prompt(const std::string &prompt) override;
- void client_input(const std::string &input) override;
- };
- #endif
|