ENH: change the search path order (if several Tcl/Tk are installed, the "current...
[cmake.git] / Source / cmCommands.h
blob457a8da517bec368ca95ab723810b3b81ecfff6a
1 /*=========================================================================
3 Program: Insight Segmentation & Registration Toolkit
4 Module: $RCSfile: cmCommands.h,v $
5 Language: C++
6 Date: $Date: 2002-01-21 20:30:21 $
7 Version: $Revision: 1.4 $
9 Copyright (c) 2002 Insight Consortium. All rights reserved.
10 See ITKCopyright.txt or http://www.itk.org/HTML/Copyright.htm 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 cmCommands_h
18 #define cmCommands_h
19 #include "cmStandardIncludes.h"
21 class cmCommand;
22 /**
23 * Global function to return all compiled in commands.
24 * To add a new command edit cmCommands.cxx and add your command.
25 * It is up to the caller to delete the commands created by this
26 * call.
28 void GetPredefinedCommands(std::list<cmCommand*>& commands);
31 #endif