diff options
author | Andy Cedilnik <andy.cedilnik@kitware.com> | 2005-06-03 18:42:33 (GMT) |
---|---|---|
committer | Andy Cedilnik <andy.cedilnik@kitware.com> | 2005-06-03 18:42:33 (GMT) |
commit | 6fe633e1f75d296caf8890ca75c5899492de9f13 (patch) | |
tree | 4a9556e3e0af3e8355cb42bc875de1eb5b015ee3 /Source/CTest/cmCTestGenericHandler.h | |
parent | 26765e815f291cc7995fc1e5ab748633384503b6 (diff) | |
download | CMake-6fe633e1f75d296caf8890ca75c5899492de9f13.zip CMake-6fe633e1f75d296caf8890ca75c5899492de9f13.tar.gz CMake-6fe633e1f75d296caf8890ca75c5899492de9f13.tar.bz2 |
ENH: Add a method to parse command line argument inside the handler
Diffstat (limited to 'Source/CTest/cmCTestGenericHandler.h')
-rw-r--r-- | Source/CTest/cmCTestGenericHandler.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/Source/CTest/cmCTestGenericHandler.h b/Source/CTest/cmCTestGenericHandler.h index f5b203e..ca658b6 100644 --- a/Source/CTest/cmCTestGenericHandler.h +++ b/Source/CTest/cmCTestGenericHandler.h @@ -48,6 +48,13 @@ public: virtual int ProcessHandler() = 0; /** + * Process command line arguments that are applicable for the handler + */ + virtual int ProcessCommandLineArguments( + const std::string& /*currentArg*/, size_t& /*idx*/, + const std::vector<std::string>& /*allArgs*/) { return 1; } + + /** * Set the CTest instance */ void SetCTestInstance(cmCTest* ctest) { m_CTest = ctest; } |