aboutsummaryrefslogtreecommitdiffstats
path: root/lib/psiprocess.h
diff options
context:
space:
mode:
authorFritz Elfert <felfert@to.com>2002-07-14 19:08:08 +0000
committerFritz Elfert <felfert@to.com>2002-07-14 19:08:08 +0000
commit28e01b8c6a137a9e98d95689be3d3d72be18d9d7 (patch)
treef011d3dba1f05cc8c08b582ba4b9568d3dfc94af /lib/psiprocess.h
parent838b2558b635d0ec27785e1280904fdea61bc935 (diff)
downloadplptools-28e01b8c6a137a9e98d95689be3d3d72be18d9d7.tar.gz
plptools-28e01b8c6a137a9e98d95689be3d3d72be18d9d7.tar.bz2
plptools-28e01b8c6a137a9e98d95689be3d3d72be18d9d7.zip
- Non-KDE stuff now builds correctly with gcc3
Diffstat (limited to 'lib/psiprocess.h')
-rw-r--r--lib/psiprocess.h9
1 files changed, 5 insertions, 4 deletions
diff --git a/lib/psiprocess.h b/lib/psiprocess.h
index 24d47eb..3e76d8e 100644
--- a/lib/psiprocess.h
+++ b/lib/psiprocess.h
@@ -24,6 +24,7 @@
#define _PSIPROCESS_H_
#include <string>
+#include <stream.h>
class rpcs;
@@ -104,16 +105,16 @@ public:
* The output is in human readable similar to the
* output of a "ls" command.
*/
- friend ostream &operator<<(ostream &o, const PsiProcess &p);
+ friend class std::ostream &operator<<(std::ostream &o, const PsiProcess &p);
private:
friend class rpcs;
- void setArgs(string _args);
+ void setArgs(std::string _args);
int pid;
- string name;
- string args;
+ std::string name;
+ std::string args;
bool s5mx;
};