summaryrefslogtreecommitdiffstats
path: root/Source/CTest/cmCTestGenericHandler.h
diff options
context:
space:
mode:
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