summaryrefslogtreecommitdiffstats
path: root/Source/CTest/cmCTestUpdateHandler.h
diff options
context:
space:
mode:
authorAndy Cedilnik <andy.cedilnik@kitware.com>2005-01-27 16:43:22 (GMT)
committerAndy Cedilnik <andy.cedilnik@kitware.com>2005-01-27 16:43:22 (GMT)
commitdc0ce24cc6bdd4e59e3fef79fd1bbdfcae82be70 (patch)
tree4b1e28c5e4accd116056be7d243400f16f0ce7d9 /Source/CTest/cmCTestUpdateHandler.h
parentbf3d7746458af539536a1438c88608897be71ce2 (diff)
downloadCMake-dc0ce24cc6bdd4e59e3fef79fd1bbdfcae82be70.zip
CMake-dc0ce24cc6bdd4e59e3fef79fd1bbdfcae82be70.tar.gz
CMake-dc0ce24cc6bdd4e59e3fef79fd1bbdfcae82be70.tar.bz2
ENH: Add a superclass to all handlers
Diffstat (limited to 'Source/CTest/cmCTestUpdateHandler.h')
-rw-r--r--Source/CTest/cmCTestUpdateHandler.h16
1 files changed, 3 insertions, 13 deletions
diff --git a/Source/CTest/cmCTestUpdateHandler.h b/Source/CTest/cmCTestUpdateHandler.h
index 14ef61c..3528eda 100644
--- a/Source/CTest/cmCTestUpdateHandler.h
+++ b/Source/CTest/cmCTestUpdateHandler.h
@@ -19,35 +19,25 @@
#define cmCTestUpdateHandler_h
-#include "cmStandardIncludes.h"
+#include "cmCTestGenericHandler.h"
#include "cmListFileCache.h"
-class cmCTest;
-
/** \class cmCTestUpdateHandler
* \brief A class that handles ctest -S invocations
*
*/
-class cmCTestUpdateHandler
+class cmCTestUpdateHandler : public cmCTestGenericHandler
{
public:
/*
* The main entry point for this class
*/
- int UpdateDirectory(cmCTest *);
-
- /*
- * If verbose then more informaiton is printed out
- */
- void SetVerbose(bool val) { m_Verbose = val; }
+ int UpdateDirectory();
cmCTestUpdateHandler();
private:
- bool m_Verbose;
- cmCTest *m_CTest;
-
// Some structures needed for cvs update
struct StringPair :
public std::pair<std::string, std::string>{};