Initial commit.
[CMakeLuaTailorHgBridge.git] / CMakeLua / Source / CTest / cmCTestConfigureHandler.h
blob17066a7bbff131ded2a2b9216d803ef1cb393f2d
1 /*=========================================================================
3 Program: CMake - Cross-Platform Makefile Generator
4 Module: $RCSfile: cmCTestConfigureHandler.h,v $
5 Language: C++
6 Date: $Date: 2006/03/09 16:17:10 $
7 Version: $Revision: 1.5 $
9 Copyright (c) 2002 Kitware, Inc. All rights reserved.
10 See Copyright.txt or http://www.cmake.org/HTML/Copyright.html for details.
12 This software is distributed WITHOUT ANY WARRANTY; without even
13 the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
14 PURPOSE. See the above copyright notices for more information.
16 =========================================================================*/
18 #ifndef cmCTestConfigureHandler_h
19 #define cmCTestConfigureHandler_h
22 #include "cmCTestGenericHandler.h"
23 #include "cmListFileCache.h"
25 /** \class cmCTestConfigureHandler
26 * \brief A class that handles ctest -S invocations
29 class cmCTestConfigureHandler : public cmCTestGenericHandler
31 public:
32 cmTypeMacro(cmCTestConfigureHandler, cmCTestGenericHandler);
35 * The main entry point for this class
37 int ProcessHandler();
39 cmCTestConfigureHandler();
41 void Initialize();
44 #endif