diff options
author | Andy Cedilnik <andy.cedilnik@kitware.com> | 2003-02-07 05:09:24 (GMT) |
---|---|---|
committer | Andy Cedilnik <andy.cedilnik@kitware.com> | 2003-02-07 05:09:24 (GMT) |
commit | 61fbfa6ea64f1801ec73896de10de07b5879e8fb (patch) | |
tree | 0d71717fbbcb199b64bba468ee9264b7c5905093 /Source/cmCTest.h | |
parent | 67ec52b343f4a320080bcd21c2f5736157053815 (diff) | |
download | CMake-61fbfa6ea64f1801ec73896de10de07b5879e8fb.zip CMake-61fbfa6ea64f1801ec73896de10de07b5879e8fb.tar.gz CMake-61fbfa6ea64f1801ec73896de10de07b5879e8fb.tar.bz2 |
Add updating support
Diffstat (limited to 'Source/cmCTest.h')
-rw-r--r-- | Source/cmCTest.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/Source/cmCTest.h b/Source/cmCTest.h index 8e9e07d..520b13b 100644 --- a/Source/cmCTest.h +++ b/Source/cmCTest.h @@ -145,6 +145,13 @@ private: std::string m_PostContext; }; + // Some structures needed for cvs update + struct StringPair : + public std::pair<std::string, std::string>{}; + struct UpdateFiles : public std::vector<StringPair>{}; + struct AuthorsToUpdatesMap : + public std::map<std::string, UpdateFiles>{}; + struct cmCTestCoverage { cmCTestCoverage() |