diff options
author | Patrick Gansterer <paroga@paroga.com> | 2012-11-19 14:48:33 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2012-11-19 17:54:30 (GMT) |
commit | e8f841473bcefc618ddf6712567e624156e88399 (patch) | |
tree | 2c77a631bcf9ee7c0cf731354db30c87a1cae312 /Source/cmGlobalXCodeGenerator.h | |
parent | 3359d95c00c221328d284e443c1d49e12630be63 (diff) | |
download | CMake-e8f841473bcefc618ddf6712567e624156e88399.zip CMake-e8f841473bcefc618ddf6712567e624156e88399.tar.gz CMake-e8f841473bcefc618ddf6712567e624156e88399.tar.bz2 |
Introduce the abstract class cmGlobalGeneratorFactory
This new abstract class allows us move some logic from the
cmGlobalGenerator into its own layer in a next step.
Diffstat (limited to 'Source/cmGlobalXCodeGenerator.h')
-rw-r--r-- | Source/cmGlobalXCodeGenerator.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Source/cmGlobalXCodeGenerator.h b/Source/cmGlobalXCodeGenerator.h index afa1ca2..c79293a 100644 --- a/Source/cmGlobalXCodeGenerator.h +++ b/Source/cmGlobalXCodeGenerator.h @@ -15,6 +15,7 @@ #include "cmGlobalGenerator.h" #include "cmXCodeObject.h" #include "cmCustomCommand.h" +class cmGlobalGeneratorFactory; class cmTarget; class cmSourceFile; class cmSourceGroup; @@ -29,7 +30,7 @@ class cmGlobalXCodeGenerator : public cmGlobalGenerator { public: cmGlobalXCodeGenerator(std::string const& version); - static cmGlobalGenerator* New(); + static cmGlobalGeneratorFactory* NewFactory(); ///! Get the name for the generator. virtual const char* GetName() const { @@ -186,6 +187,7 @@ private: const char* varNameSuffix, const char* default_flags); + class Factory; class BuildObjectListOrString; friend class BuildObjectListOrString; |