ENH: put the 64 bit paths first
[cmake.git] / Source / CTest / cmCTestCommand.h
blob18462a5cc4a247bcfbcb91b1746e834ba7f5b6f3
1 /*=========================================================================
3 Program: CMake - Cross-Platform Makefile Generator
4 Module: $RCSfile: cmCTestCommand.h,v $
5 Language: C++
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"
22 class cmCTest;
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
34 public:
36 cmCTestCommand() {this->CTest = 0; this->CTestScriptHandler = 0;}
38 cmCTest *CTest;
39 cmCTestScriptHandler *CTestScriptHandler;
41 cmTypeMacro(cmCTestCommand, cmCommand);
45 #endif