summaryrefslogtreecommitdiffstats
path: root/Source/cmGlobalVisualStudio7Generator.h
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2019-01-10 13:37:40 (GMT)
committerBrad King <brad.king@kitware.com>2019-01-10 14:38:35 (GMT)
commit40a732800d52b394d7bd4a81e9aaef04ef5914e6 (patch)
treee4f665370ae5fcfb3767eecad49dbcd4b45aecff /Source/cmGlobalVisualStudio7Generator.h
parent5ca7e5057bcadbcbe6b933b004ba37ddb5199dba (diff)
downloadCMake-40a732800d52b394d7bd4a81e9aaef04ef5914e6.zip
CMake-40a732800d52b394d7bd4a81e9aaef04ef5914e6.tar.gz
CMake-40a732800d52b394d7bd4a81e9aaef04ef5914e6.tar.bz2
VS: Clarify global generator constructor interface
Make the constructors protected since they should be produced through factories. Also rename `platform{ => InGenerator}Name` to clarify the meaning of the argument.
Diffstat (limited to 'Source/cmGlobalVisualStudio7Generator.h')
-rw-r--r--Source/cmGlobalVisualStudio7Generator.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/Source/cmGlobalVisualStudio7Generator.h b/Source/cmGlobalVisualStudio7Generator.h
index f092b56..4240bd4 100644
--- a/Source/cmGlobalVisualStudio7Generator.h
+++ b/Source/cmGlobalVisualStudio7Generator.h
@@ -18,8 +18,6 @@ struct cmIDEFlagTable;
class cmGlobalVisualStudio7Generator : public cmGlobalVisualStudioGenerator
{
public:
- cmGlobalVisualStudio7Generator(cmake* cm,
- const std::string& platformName = "");
~cmGlobalVisualStudio7Generator();
///! Get the name for the platform.
@@ -110,6 +108,9 @@ public:
cmIDEFlagTable const* ExtraFlagTable;
protected:
+ cmGlobalVisualStudio7Generator(cmake* cm,
+ std::string const& platformInGeneratorName);
+
void Generate() override;
std::string const& GetDevEnvCommand();