diff options
| author | Alan Eldridge <alane@FreeBSD.org> | 2003-01-01 15:55:58 +0000 |
|---|---|---|
| committer | Alan Eldridge <alane@FreeBSD.org> | 2003-01-01 15:55:58 +0000 |
| commit | f90cbac5e780de37b2568b5e8cfc35f11e1ee320 (patch) | |
| tree | 64c97e01edaf3064b3ac43d34208888f0e3adcec /devel/kaptain/files/patch-kaptain-communication.h | |
| parent | updated to current version (diff) | |
A graphical front end runner for command line programs. Uses Qt3.
Diffstat (limited to 'devel/kaptain/files/patch-kaptain-communication.h')
| -rw-r--r-- | devel/kaptain/files/patch-kaptain-communication.h | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/devel/kaptain/files/patch-kaptain-communication.h b/devel/kaptain/files/patch-kaptain-communication.h new file mode 100644 index 000000000000..3af0956d9af3 --- /dev/null +++ b/devel/kaptain/files/patch-kaptain-communication.h @@ -0,0 +1,37 @@ +--- kaptain/communication.h.orig Sat Mar 2 19:56:32 2002 ++++ kaptain/communication.h Fri Dec 20 16:14:31 2002 +@@ -12,7 +12,7 @@ + QSocketNotifier * reader; + bool ok; + bool input, output; +- string message; // buffer ++ std::string message; // buffer + + public: + Communicator(); +@@ -21,19 +21,19 @@ + bool is_stdin(); + + bool setup_stdio(); +- bool setup_progio(string); +- bool setup_socket_server(string); +- bool setup_socket_client(string); ++ bool setup_progio(std::string); ++ bool setup_socket_server(std::string); ++ bool setup_socket_client(std::string); + + bool setup_stdin(); + bool setup_stdout(); +- bool setup_filein(string); +- bool setup_fileout(string); ++ bool setup_filein(std::string); ++ bool setup_fileout(std::string); + + void no_input() {input=false;} + void no_output() {output=false;} + +- void send(string); ++ void send(std::string); + + public slots: + void data_arrived(int); |
