cmCTestConfigureHandler.h 667 B

1234567891011121314151617181920212223242526272829
  1. /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
  2. file Copyright.txt or https://cmake.org/licensing for details. */
  3. #ifndef cmCTestConfigureHandler_h
  4. #define cmCTestConfigureHandler_h
  5. #include "cmConfigure.h" // IWYU pragma: keep
  6. #include "cmCTestGenericHandler.h"
  7. /** \class cmCTestConfigureHandler
  8. * \brief A class that handles ctest -S invocations
  9. *
  10. */
  11. class cmCTestConfigureHandler : public cmCTestGenericHandler
  12. {
  13. public:
  14. typedef cmCTestGenericHandler Superclass;
  15. /*
  16. * The main entry point for this class
  17. */
  18. int ProcessHandler() override;
  19. cmCTestConfigureHandler();
  20. void Initialize() override;
  21. };
  22. #endif