diff options
author | Andy Cedilnik <andy.cedilnik@kitware.com> | 2005-02-17 20:22:29 (GMT) |
---|---|---|
committer | Andy Cedilnik <andy.cedilnik@kitware.com> | 2005-02-17 20:22:29 (GMT) |
commit | ab7668de3f952a289987dca477f6540912302430 (patch) | |
tree | 0fc43e15f093f74966e5365e4e86f9d48f0d8182 /Source/CTest/cmCTestGenericHandler.h | |
parent | e2ec4a18453f3bdc1ab826a618a2202c5e9e9dec (diff) | |
download | CMake-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.h | 6 |
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 |