summaryrefslogtreecommitdiffstats
path: root/Source/CTest/cmCTestGenericHandler.h
diff options
context:
space:
mode:
authorAndy Cedilnik <andy.cedilnik@kitware.com>2005-02-17 20:22:29 (GMT)
committerAndy Cedilnik <andy.cedilnik@kitware.com>2005-02-17 20:22:29 (GMT)
commitab7668de3f952a289987dca477f6540912302430 (patch)
tree0fc43e15f093f74966e5365e4e86f9d48f0d8182 /Source/CTest/cmCTestGenericHandler.h
parente2ec4a18453f3bdc1ab826a618a2202c5e9e9dec (diff)
downloadCMake-ab7668de3f952a289987dca477f6540912302430.zip
CMake-ab7668de3f952a289987dca477f6540912302430.tar.gz
CMake-ab7668de3f952a289987dca477f6540912302430.tar.bz2
ENH: Add a way to set options of the handler genericly
Diffstat (limited to 'Source/CTest/cmCTestGenericHandler.h')
-rw-r--r--Source/CTest/cmCTestGenericHandler.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/Source/CTest/cmCTestGenericHandler.h b/Source/CTest/cmCTestGenericHandler.h
index 26fdc02..a40974c 100644
--- a/Source/CTest/cmCTestGenericHandler.h
+++ b/Source/CTest/cmCTestGenericHandler.h
@@ -58,9 +58,15 @@ public:
cmCTestGenericHandler();
virtual ~cmCTestGenericHandler();
+ typedef std::map<cmStdString,cmStdString> t_StringToString;
+
+ void SetOption(const char* op, const char* value);
+ const char* GetOption(const char* op);
+
protected:
bool m_Verbose;
cmCTest *m_CTest;
+ t_StringToString m_Options;
};
#endif