summaryrefslogtreecommitdiffstats
path: root/Source/cmCommand.h
diff options
context:
space:
mode:
authorAlexander Neundorf <neundorf@kde.org>2007-07-02 19:43:21 (GMT)
committerAlexander Neundorf <neundorf@kde.org>2007-07-02 19:43:21 (GMT)
commit2e56fa4808109552610cbcd360c473d2db895520 (patch)
tree538ac147ca821a4779e444e7c84985a43ac07f5f /Source/cmCommand.h
parent7f29f8966d672a2f8ef50b2249f6d826d1702bdc (diff)
downloadCMake-2e56fa4808109552610cbcd360c473d2db895520.zip
CMake-2e56fa4808109552610cbcd360c473d2db895520.tar.gz
CMake-2e56fa4808109552610cbcd360c473d2db895520.tar.bz2
ENH: add framework for unified handling of arguments to cmake commands,
example see cmExportCommand.cxx Alex
Diffstat (limited to 'Source/cmCommand.h')
-rw-r--r--Source/cmCommand.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/Source/cmCommand.h b/Source/cmCommand.h
index 55672a6..3111d46 100644
--- a/Source/cmCommand.h
+++ b/Source/cmCommand.h
@@ -20,6 +20,7 @@
#include "cmObject.h"
#include "cmListFileCache.h"
#include "cmMakefile.h"
+#include "cmCommandArgumentsHelper.h"
/** \class cmCommand
* \brief Superclass for all commands in CMake.
@@ -174,6 +175,7 @@ public:
protected:
cmMakefile* Makefile;
+ cmCommandArgumentsHelper Helper;
private:
bool Enabled;