summaryrefslogtreecommitdiff
path: root/Source/cmCommand.h
diff options
context:
space:
mode:
authorAlexander Neundorf <neundorf@kde.org>2007-07-02 15:43:21 -0400
committerAlexander Neundorf <neundorf@kde.org>2007-07-02 15:43:21 -0400
commit2e56fa4808109552610cbcd360c473d2db895520 (patch)
tree538ac147ca821a4779e444e7c84985a43ac07f5f /Source/cmCommand.h
parent7f29f8966d672a2f8ef50b2249f6d826d1702bdc (diff)
downloadcmake-2e56fa4808109552610cbcd360c473d2db895520.tar.gz
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 55672a658c..3111d46f86 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;