diff options
author | Andy Cedilnik <andy.cedilnik@kitware.com> | 2002-10-18 16:08:10 (GMT) |
---|---|---|
committer | Andy Cedilnik <andy.cedilnik@kitware.com> | 2002-10-18 16:08:10 (GMT) |
commit | 01bd3b7ab10a8d218649d90e4c4155b6150220cc (patch) | |
tree | 6d24abe69ea299bb48b8f98cb128ca9483d670a4 /Source | |
parent | c3007233ec8fc164a1e5de539bebdeb11cae3d8c (diff) | |
download | CMake-01bd3b7ab10a8d218649d90e4c4155b6150220cc.zip CMake-01bd3b7ab10a8d218649d90e4c4155b6150220cc.tar.gz CMake-01bd3b7ab10a8d218649d90e4c4155b6150220cc.tar.bz2 |
Improve comment
Diffstat (limited to 'Source')
-rw-r--r-- | Source/cmWin32ProcessExecution.h | 27 |
1 files changed, 13 insertions, 14 deletions
diff --git a/Source/cmWin32ProcessExecution.h b/Source/cmWin32ProcessExecution.h index c0eafbf..af46f6f 100644 --- a/Source/cmWin32ProcessExecution.h +++ b/Source/cmWin32ProcessExecution.h @@ -17,19 +17,6 @@ #ifndef cmWin32ProcessExecution_h #define cmWin32ProcessExecution_h -/* - * Portable 'popen' replacement for Win32. - * - * Written by Bill Tutt <billtut@microsoft.com>. Minor tweaks - * and 2.0 integration by Fredrik Lundh <fredrik@pythonware.com> - * Return code handling by David Bolen <db3l@fitlinxx.com>. - * - * Modified for CMake. - * - * For more information, please check Microsoft Knowledge Base - * Articles Q190351 and Q150956. - */ - #include "cmStandardIncludes.h" #include "windows.h" @@ -39,7 +26,19 @@ class cmMakefile; * \brief A process executor for windows * * cmWin32ProcessExecution is a class that provides a "clean" way of - * executing processes on Windows. + * executing processes on Windows. It is modified code from Python 2.1 + * distribution. + * + * Portable 'popen' replacement for Win32. + * + * Written by Bill Tutt <billtut@microsoft.com>. Minor tweaks and 2.0 + * integration by Fredrik Lundh <fredrik@pythonware.com> Return code + * handling by David Bolen <db3l@fitlinxx.com>. + * + * Modified for CMake. + * + * For more information, please check Microsoft Knowledge Base + * Articles Q190351 and Q150956. */ class cmWin32ProcessExecution { |