diff options
author | Daniel Pfeifer <daniel@pfeifer-mail.de> | 2015-05-23 22:13:15 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2015-05-26 15:09:22 (GMT) |
commit | de2ef3053c37d0a958a92f8d763168d5b4e5dc17 (patch) | |
tree | 58ff9cf7d7469d50e7d06a9189f2c616b1a4e3e2 /Source/cmCTest.h | |
parent | b04500a7259437dca9a2d8c8f0ce500b3bd2b057 (diff) | |
download | CMake-de2ef3053c37d0a958a92f8d763168d5b4e5dc17.zip CMake-de2ef3053c37d0a958a92f8d763168d5b4e5dc17.tar.gz CMake-de2ef3053c37d0a958a92f8d763168d5b4e5dc17.tar.bz2 |
cmCTest: Drop unused method overloads
The StartXML, EndXML, and AddSiteProperties overloads that take a stream
directly are no longer called anywhere. All clients hvae been ported to
cmXMLWriter. Drop the old overloads.
Diffstat (limited to 'Source/cmCTest.h')
-rw-r--r-- | Source/cmCTest.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/Source/cmCTest.h b/Source/cmCTest.h index 7153e8f..db3ea10 100644 --- a/Source/cmCTest.h +++ b/Source/cmCTest.h @@ -274,11 +274,9 @@ public: static std::string SafeBuildIdField(const std::string& value); //! Start CTest XML output file - void StartXML(std::ostream& ostr, bool append); void StartXML(cmXMLWriter& xml, bool append); //! End CTest XML output file - void EndXML(std::ostream& ostr); void EndXML(cmXMLWriter& xml); //! Run command specialized for make and configure. Returns process status @@ -423,7 +421,6 @@ public: /** Direct process output to given streams. */ void SetStreams(std::ostream* out, std::ostream* err) { this->StreamOut = out; this->StreamErr = err; } - void AddSiteProperties(std::ostream& ); void AddSiteProperties(cmXMLWriter& xml); bool GetLabelSummary() { return this->LabelSummary;} |