summaryrefslogtreecommitdiffstats
path: root/Source/cmLocalGenerator.h
diff options
context:
space:
mode:
authorStephen Kelly <steveire@gmail.com>2015-04-28 05:50:52 (GMT)
committerStephen Kelly <steveire@gmail.com>2015-04-28 05:50:52 (GMT)
commita48aebcb67a66bd2fee1318bb971cc5e3b016410 (patch)
treea93f900fdbcfcccfa80c7c6cd14ac29bbfca03bb /Source/cmLocalGenerator.h
parente4c78b37cec74c505e8a4951276c17f7e64e5f67 (diff)
downloadCMake-a48aebcb67a66bd2fee1318bb971cc5e3b016410.zip
CMake-a48aebcb67a66bd2fee1318bb971cc5e3b016410.tar.gz
CMake-a48aebcb67a66bd2fee1318bb971cc5e3b016410.tar.bz2
cmLocalGenerator: Require a parent in the constructor.
Pass the parent though cmGlobalGenerator::CreateLocalGenerator. This will make it easy to initialize state scopes independent of cmMakefile.
Diffstat (limited to 'Source/cmLocalGenerator.h')
-rw-r--r--Source/cmLocalGenerator.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/Source/cmLocalGenerator.h b/Source/cmLocalGenerator.h
index a005f5f..befddbf 100644
--- a/Source/cmLocalGenerator.h
+++ b/Source/cmLocalGenerator.h
@@ -33,7 +33,7 @@ class cmCustomCommandGenerator;
class cmLocalGenerator
{
public:
- cmLocalGenerator();
+ cmLocalGenerator(cmLocalGenerator* parent);
virtual ~cmLocalGenerator();
/**
@@ -131,7 +131,6 @@ public:
///! set/get the parent generator
cmLocalGenerator* GetParent() const {return this->Parent;}
- void SetParent(cmLocalGenerator* g) { this->Parent = g; g->AddChild(this); }
///! set/get the children
void AddChild(cmLocalGenerator* g) { this->Children.push_back(g); }