STYLE: Remove useless install generator typedefs

The cmInstall*Generator classes all derive from cmInstallGenerator which
provides the Indent typedef so they do not need to provide it
This commit is contained in:
Brad King 2008-12-18 10:06:09 -05:00
parent 62a9fc7e94
commit f8c0dc27b5
4 changed files with 0 additions and 4 deletions

View File

@ -35,7 +35,6 @@ public:
virtual ~cmInstallDirectoryGenerator(); virtual ~cmInstallDirectoryGenerator();
protected: protected:
typedef cmInstallGeneratorIndent Indent;
virtual void GenerateScriptActions(std::ostream& os, Indent const& indent); virtual void GenerateScriptActions(std::ostream& os, Indent const& indent);
std::vector<std::string> Directories; std::vector<std::string> Directories;
std::string FilePermissions; std::string FilePermissions;

View File

@ -42,7 +42,6 @@ public:
protected: protected:
typedef std::vector<cmTargetExport*> ExportSet; typedef std::vector<cmTargetExport*> ExportSet;
typedef cmInstallGeneratorIndent Indent;
virtual void GenerateScript(std::ostream& os); virtual void GenerateScript(std::ostream& os);
virtual void GenerateScriptConfigs(std::ostream& os, Indent const& indent); virtual void GenerateScriptConfigs(std::ostream& os, Indent const& indent);
virtual void GenerateScriptActions(std::ostream& os, Indent const& indent); virtual void GenerateScriptActions(std::ostream& os, Indent const& indent);

View File

@ -35,7 +35,6 @@ public:
virtual ~cmInstallFilesGenerator(); virtual ~cmInstallFilesGenerator();
protected: protected:
typedef cmInstallGeneratorIndent Indent;
virtual void GenerateScriptActions(std::ostream& os, Indent const& indent); virtual void GenerateScriptActions(std::ostream& os, Indent const& indent);
std::vector<std::string> Files; std::vector<std::string> Files;
bool Programs; bool Programs;

View File

@ -64,7 +64,6 @@ public:
bool IsImportLibrary() const { return this->ImportLibrary; } bool IsImportLibrary() const { return this->ImportLibrary; }
protected: protected:
typedef cmInstallGeneratorIndent Indent;
virtual void GenerateScript(std::ostream& os); virtual void GenerateScript(std::ostream& os);
virtual void GenerateScriptConfigs(std::ostream& os, Indent const& indent); virtual void GenerateScriptConfigs(std::ostream& os, Indent const& indent);
virtual void GenerateScriptActions(std::ostream& os, Indent const& indent); virtual void GenerateScriptActions(std::ostream& os, Indent const& indent);