summaryrefslogtreecommitdiffstats
path: root/Source/cmInstallProgramsCommand.h
diff options
context:
space:
mode:
authorDaniel Pfeifer <daniel@pfeifer-mail.de>2017-01-05 22:27:14 (GMT)
committerRegina Pfeifer <regina@mailbox.org>2019-07-18 09:53:46 (GMT)
commit316e40baec978980c9023532f4dade1e5ea0ad48 (patch)
tree2580b61452ff3cc4fd3b6853d8a0ae9721d700e2 /Source/cmInstallProgramsCommand.h
parent7bc88b91655b3397054d26f519548f34068ad830 (diff)
downloadCMake-316e40baec978980c9023532f4dade1e5ea0ad48.zip
CMake-316e40baec978980c9023532f4dade1e5ea0ad48.tar.gz
CMake-316e40baec978980c9023532f4dade1e5ea0ad48.tar.bz2
cmInstallProgramsCommand: Port away from FinalPass
Diffstat (limited to 'Source/cmInstallProgramsCommand.h')
-rw-r--r--Source/cmInstallProgramsCommand.h18
1 files changed, 0 insertions, 18 deletions
diff --git a/Source/cmInstallProgramsCommand.h b/Source/cmInstallProgramsCommand.h
index 3242365..ccd621d 100644
--- a/Source/cmInstallProgramsCommand.h
+++ b/Source/cmInstallProgramsCommand.h
@@ -37,24 +37,6 @@ public:
*/
bool InitialPass(std::vector<std::string> const& args,
cmExecutionStatus& status) override;
-
- /**
- * This is called at the end after all the information
- * specified by the command is accumulated. Most commands do
- * not implement this method. At this point, reading and
- * writing to the cache can be done.
- */
- void FinalPass() override;
-
- bool HasFinalPass() const override { return true; }
-
-protected:
- std::string FindInstallSource(const char* name) const;
-
-private:
- std::vector<std::string> FinalArgs;
- std::string Destination;
- std::vector<std::string> Files;
};
#endif