1 /*=========================================================================
3 Program: CMake - Cross-Platform Makefile Generator
4 Module: $RCSfile: cmCTestCommand.h,v $
6 Date: $Date: 2006-03-10 20:03:09 $
7 Version: $Revision: 1.3 $
9 Copyright (c) 2002 Kitware, Inc., Insight Consortium. 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 =========================================================================*/
17 #ifndef cmCTestCommand_h
18 #define cmCTestCommand_h
20 #include "cmCommand.h"
23 class cmCTestScriptHandler
;
25 /** \class cmCTestCommand
26 * \brief A superclass for all commands added to the CTestScriptHandler
28 * cmCTestCommand is the superclass for all commands that will be added to
29 * the ctest script handlers parser.
32 class cmCTestCommand
: public cmCommand
36 cmCTestCommand() {this->CTest
= 0; this->CTestScriptHandler
= 0;}
39 cmCTestScriptHandler
*CTestScriptHandler
;
41 cmTypeMacro(cmCTestCommand
, cmCommand
);