diff options
author | Brad King <brad.king@kitware.com> | 2003-07-07 09:12:34 -0400 |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2003-07-07 09:12:34 -0400 |
commit | b5fec4a3c8fac315b1279abbe26df352780870bb (patch) | |
tree | d3f3f3e8494e906e1761177c1a502bdb260903b0 /Source/kwsys/Process.h.in | |
parent | 2b8bfb3b5d152d07f2d9d059b98680f6313b3050 (diff) | |
download | cmake-b5fec4a3c8fac315b1279abbe26df352780870bb.tar.gz |
ENH: Implemented SetWorkingDirectory method.
Diffstat (limited to 'Source/kwsys/Process.h.in')
-rw-r--r-- | Source/kwsys/Process.h.in | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/Source/kwsys/Process.h.in b/Source/kwsys/Process.h.in index cc45299457..7fb681928e 100644 --- a/Source/kwsys/Process.h.in +++ b/Source/kwsys/Process.h.in @@ -99,10 +99,11 @@ kwsysEXPORT void kwsysProcess_SetCommand(kwsysProcess* cp, kwsysEXPORT void kwsysProcess_SetTimeout(kwsysProcess* cp, double timeout); /** - * Set the working directory for the child process. The working directory can - * be absolute or relative to the current directory. + * Set the working directory for the child process. The working + * directory can be absolute or relative to the current directory. */ -kwsysEXPORT void kwsysProcess_SetWorkingDirectory(kwsysProcess* cp, const char* dir); +kwsysEXPORT void kwsysProcess_SetWorkingDirectory(kwsysProcess* cp, + const char* dir); /** * Get the current state of the Process instance. Possible states are: |