summaryrefslogtreecommitdiffstats
path: root/Source/cmProcessTools.h
Commit message (Collapse)AuthorAgeFilesLines
* ENH: New OutputParser::Process() signatureBrad King2009-07-101-0/+2
| | | | | | This overload accepts a null-terminated string instead of requiring a length. It is useful to pass some fake process output before and after the real process output.
* COMP: cmProcessTools::OutputParser virtual dtorBrad King2009-02-241-0/+2
| | | | | This class has virtual methods and therefore should have a virtual destructor.
* ENH: Create cmProcessTools to parse child outputBrad King2009-02-241-0/+82
This class provides a RunProcess method to run a child process and send its output to an abstract parsing interface. This also provides a simple line parser and logger implementing the parsing interface.