diff options
author | Daniel Pfeifer <daniel@pfeifer-mail.de> | 2015-05-23 22:33:24 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2015-05-26 15:09:21 (GMT) |
commit | ed42c203ed4b258091bd6eeaa1fe567c6f9b120a (patch) | |
tree | 1af5663f5d42da0b2304180761f801ebe97e29e1 /Source/CTest/cmCTestGlobalVC.h | |
parent | 18825bafd99c6a9c8ec1fb4e7b22a8059c680572 (diff) | |
download | CMake-ed42c203ed4b258091bd6eeaa1fe567c6f9b120a.zip CMake-ed42c203ed4b258091bd6eeaa1fe567c6f9b120a.tar.gz CMake-ed42c203ed4b258091bd6eeaa1fe567c6f9b120a.tar.bz2 |
cmCTestUpdateHandler: Port to cmXMLWriter
Diffstat (limited to 'Source/CTest/cmCTestGlobalVC.h')
-rw-r--r-- | Source/CTest/cmCTestGlobalVC.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Source/CTest/cmCTestGlobalVC.h b/Source/CTest/cmCTestGlobalVC.h index 29e0a61..d0e9410 100644 --- a/Source/CTest/cmCTestGlobalVC.h +++ b/Source/CTest/cmCTestGlobalVC.h @@ -30,7 +30,7 @@ public: protected: // Implement cmCTestVC internal API. - virtual bool WriteXMLUpdates(std::ostream& xml); + virtual bool WriteXMLUpdates(cmXMLWriter& xml); /** Represent a vcs-reported action for one path in a revision. */ struct Change @@ -62,8 +62,8 @@ protected: virtual void LoadModifications() = 0; virtual void LoadRevisions() = 0; - virtual void WriteXMLGlobal(std::ostream& xml); - void WriteXMLDirectory(std::ostream& xml, std::string const& path, + virtual void WriteXMLGlobal(cmXMLWriter& xml); + void WriteXMLDirectory(cmXMLWriter& xml, std::string const& path, Directory const& dir); }; |