diff options
Diffstat (limited to 'Source/CTest/cmCTestVC.h')
-rw-r--r-- | Source/CTest/cmCTestVC.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Source/CTest/cmCTestVC.h b/Source/CTest/cmCTestVC.h index e1228e0..4413193 100644 --- a/Source/CTest/cmCTestVC.h +++ b/Source/CTest/cmCTestVC.h @@ -45,9 +45,13 @@ public: /** Perform cleanup operations on the work tree. */ void Cleanup(); + void MarkOldRevision() { this->NoteOldRevision(); } + void MarkNewRevision() { this->NoteNewRevision(); } protected: // Internal API to be implemented by subclasses. virtual void CleanupImpl(); + virtual void NoteOldRevision(); + virtual void NoteNewRevision(); /** Convert a list of arguments to a human-readable command line. */ static std::string ComputeCommandLine(char const* const* cmd); |