diff options
Diffstat (limited to 'Source/CTest/cmCTestGenericHandler.h')
-rw-r--r-- | Source/CTest/cmCTestGenericHandler.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/Source/CTest/cmCTestGenericHandler.h b/Source/CTest/cmCTestGenericHandler.h index ca658b6..dccb70f 100644 --- a/Source/CTest/cmCTestGenericHandler.h +++ b/Source/CTest/cmCTestGenericHandler.h @@ -23,6 +23,7 @@ class cmCTest; class cmMakefile; +class cmCTestCommand; /** \class cmCTestGenericHandler * \brief A superclass of all CTest Handlers @@ -71,10 +72,17 @@ public: void SetOption(const char* op, const char* value); const char* GetOption(const char* op); + void SetCommand(cmCTestCommand* command) + { + m_Command = command; + } + protected: bool m_HandlerVerbose; cmCTest *m_CTest; t_StringToString m_Options; + + cmCTestCommand* m_Command; }; #endif |