summaryrefslogtreecommitdiffstats
path: root/Source/cmCommands.h
diff options
context:
space:
mode:
authorBill Hoffman <bill.hoffman@kitware.com>2001-02-13 00:49:52 (GMT)
committerBill Hoffman <bill.hoffman@kitware.com>2001-02-13 00:49:52 (GMT)
commitdb267f533b9ac63db78559e9d3cb39a6db090770 (patch)
treec1d9cbee32d5de1e522e2c2ab5503ec82fb39f2c /Source/cmCommands.h
parent9d431ae48b0912454405d5eaabf7ce11561fd4ec (diff)
downloadCMake-db267f533b9ac63db78559e9d3cb39a6db090770.zip
CMake-db267f533b9ac63db78559e9d3cb39a6db090770.tar.gz
CMake-db267f533b9ac63db78559e9d3cb39a6db090770.tar.bz2
ENH: get rid of special msc configure file
Diffstat (limited to 'Source/cmCommands.h')
-rw-r--r--Source/cmCommands.h30
1 files changed, 30 insertions, 0 deletions
diff --git a/Source/cmCommands.h b/Source/cmCommands.h
new file mode 100644
index 0000000..f006063
--- /dev/null
+++ b/Source/cmCommands.h
@@ -0,0 +1,30 @@
+ /*=========================================================================
+
+ Program: Insight Segmentation & Registration Toolkit
+ Module: $RCSfile$
+ Language: C++
+ Date: $Date$
+ Version: $Revision$
+
+
+ Copyright (c) 2000 National Library of Medicine
+ All rights reserved.
+
+ See COPYRIGHT.txt for copyright details.
+
+=========================================================================*/
+#ifndef cmCommands_h
+#define cmCommands_h
+#include "cmStandardIncludes.h"
+
+class cmCommand;
+/**
+ * Global function to return all compiled in commands.
+ * To add a new command edit cmCommands.cxx and add your command.
+ * It is up to the caller to delete the commands created by this
+ * call.
+ */
+void GetPredefinedCommands(std::list<cmCommand*>& commands);
+
+
+#endif