summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRĂ¼diger Timm <rt@openoffice.org>2004-06-17 10:42:26 +0000
committerRĂ¼diger Timm <rt@openoffice.org>2004-06-17 10:42:26 +0000
commit4d48d2d3561ebbab8347107daf5cbef6ac99baae (patch)
tree0f66df379a68e6405ed8c3fab2aab135e3f042de
parent9fac78ff7ac82055df5e40df51973f45ef7a1912 (diff)
INTEGRATION: CWS gh6 (1.3.28); FILE MERGED
2004/05/18 12:40:45 gh 1.3.28.1: #116401# allow setting of environment variables for childprocesses from BASIC
-rw-r--r--automation/source/testtool/tcommuni.hxx11
1 files changed, 8 insertions, 3 deletions
diff --git a/automation/source/testtool/tcommuni.hxx b/automation/source/testtool/tcommuni.hxx
index 71cd42fdc295..d9edd9867db4 100644
--- a/automation/source/testtool/tcommuni.hxx
+++ b/automation/source/testtool/tcommuni.hxx
@@ -2,9 +2,9 @@
*
* $RCSfile: tcommuni.hxx,v $
*
- * $Revision: 1.3 $
+ * $Revision: 1.4 $
*
- * last change: $Author: kz $ $Date: 2003-08-25 15:47:30 $
+ * last change: $Author: rt $ $Date: 2004-06-17 11:42:26 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -70,6 +70,10 @@ DECLARE_LIST( StringList, String * );
#define _STRING_LIST
#endif
+#ifndef _PROCESS_HXX
+#include <basic/process.hxx>
+#endif
+
class Process;
class CommunicationManagerClientViaSocketTT : public CommunicationManagerClientViaSocket
@@ -78,7 +82,7 @@ public:
CommunicationManagerClientViaSocketTT();
virtual BOOL StartCommunication();
- virtual BOOL StartCommunication( String aApp, String aParams );
+ virtual BOOL StartCommunication( String aApp, String aParams, Environment *pChildEnv );
protected:
virtual BOOL RetryConnect();
@@ -86,6 +90,7 @@ protected:
Time aFirstRetryCall;
String aAppPath;
String aAppParams;
+ Environment aAppEnv;
Process *pProcess;
};