blob: 3af0956d9af3dee0907ea03c0913f301fa7abee5 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
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);
|