summaryrefslogtreecommitdiff
path: root/src/sysExec.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/sysExec.h')
-rw-r--r--src/sysExec.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/sysExec.h b/src/sysExec.h
index b6efb45..b5400b9 100644
--- a/src/sysExec.h
+++ b/src/sysExec.h
@@ -44,9 +44,9 @@ class SysExec
{
public:
SysExec(std::string const& script);
- SysExec(std::string const& script, StringVector const& args);
- SysExec(std::string const& script, StringList const& env);
- SysExec(std::string const& script, StringVector const& args, StringList const& env);
+ SysExec(std::string const& script, StringVector args);
+ SysExec(std::string const& script, StringList env);
+ SysExec(std::string const& script, StringVector args, StringList env);
~SysExec();
int waitForScript();
@@ -55,7 +55,7 @@ class SysExec
static void waitAndDestroy(SysExec*& s);
private:
- void doExec(StringVector const& args, StringList const& env);
+ void doExec(StringVector args, StringList env);
std::string script_;
bool closed_;