|
@@ -3,7 +3,6 @@
|
|
|
|
|
|
#include <functional>
|
|
|
#include <string>
|
|
|
-#include "session.h"
|
|
|
|
|
|
typedef std::function<void(const std::string &)> stringFunc;
|
|
|
|
|
@@ -15,25 +14,8 @@ struct OldValues {
|
|
|
};
|
|
|
|
|
|
class Director;
|
|
|
-
|
|
|
-// 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);
|
|
|
- virtual void server_prompt(const std::string &prompt);
|
|
|
- virtual void client_input(const std::string &input);
|
|
|
-
|
|
|
- const std::string & get_prompt(void);
|
|
|
- void to_server(const std::string &send);
|
|
|
- void to_client(const std::string &send);
|
|
|
-};
|
|
|
+#include "session.h"
|
|
|
+#include "dispatchers.h"
|
|
|
|
|
|
class Director {
|
|
|
private:
|
|
@@ -50,7 +32,7 @@ public:
|
|
|
// since it has direct access to us.
|
|
|
void to_server(const std::string &send);
|
|
|
void to_client(const std::string &send);
|
|
|
- const std::string& get_prompt(void);
|
|
|
+ const std::string &get_prompt(void);
|
|
|
|
|
|
void set_server_line(stringFunc new_sl);
|
|
|
void set_server_prompt(stringFunc new_sp);
|