summaryrefslogtreecommitdiffstats
path: root/Source/cmFileCommand.h
diff options
context:
space:
mode:
authorDaniel Pfeifer <daniel@pfeifer-mail.de>2017-01-08 23:08:33 (GMT)
committerRegina Pfeifer <regina@mailbox.org>2019-08-06 10:21:04 (GMT)
commit9703c65718689e56bfa100f1965b6a83af87e090 (patch)
tree558e89641c836474069006d488cf51b8d04ebac4 /Source/cmFileCommand.h
parent64f987c174691982e1f01eadb2c76693ea674e52 (diff)
downloadCMake-9703c65718689e56bfa100f1965b6a83af87e090.zip
CMake-9703c65718689e56bfa100f1965b6a83af87e090.tar.gz
CMake-9703c65718689e56bfa100f1965b6a83af87e090.tar.bz2
cmFileCommand: put subcommands in unnamed namespace
Diffstat (limited to 'Source/cmFileCommand.h')
-rw-r--r--Source/cmFileCommand.h65
1 files changed, 0 insertions, 65 deletions
diff --git a/Source/cmFileCommand.h b/Source/cmFileCommand.h
index e33c576..b564540 100644
--- a/Source/cmFileCommand.h
+++ b/Source/cmFileCommand.h
@@ -35,71 +35,6 @@ public:
*/
bool InitialPass(std::vector<std::string> const& args,
cmExecutionStatus& status) override;
-
-protected:
- bool HandleRename(std::vector<std::string> const& args,
- cmExecutionStatus& status);
- bool HandleRemove(std::vector<std::string> const& args, bool recurse,
- cmExecutionStatus& status);
- bool HandleWriteCommand(std::vector<std::string> const& args, bool append,
- cmExecutionStatus& status);
- bool HandleReadCommand(std::vector<std::string> const& args,
- cmExecutionStatus& status);
- bool HandleHashCommand(std::vector<std::string> const& args,
- cmExecutionStatus& status);
- bool HandleStringsCommand(std::vector<std::string> const& args,
- cmExecutionStatus& status);
- bool HandleGlobCommand(std::vector<std::string> const& args, bool recurse,
- cmExecutionStatus& status);
- bool HandleTouchCommand(std::vector<std::string> const& args, bool create,
- cmExecutionStatus& status);
- bool HandleMakeDirectoryCommand(std::vector<std::string> const& args,
- cmExecutionStatus& status);
-
- bool HandleRelativePathCommand(std::vector<std::string> const& args,
- cmExecutionStatus& status);
- bool HandleCMakePathCommand(std::vector<std::string> const& args,
- bool nativePath, cmExecutionStatus& status);
- bool HandleReadElfCommand(std::vector<std::string> const& args,
- cmExecutionStatus& status);
- bool HandleRPathChangeCommand(std::vector<std::string> const& args,
- cmExecutionStatus& status);
- bool HandleRPathCheckCommand(std::vector<std::string> const& args,
- cmExecutionStatus& status);
- bool HandleRPathRemoveCommand(std::vector<std::string> const& args,
- cmExecutionStatus& status);
- bool HandleDifferentCommand(std::vector<std::string> const& args,
- cmExecutionStatus& status);
-
- bool HandleCopyCommand(std::vector<std::string> const& args,
- cmExecutionStatus& status);
- bool HandleInstallCommand(std::vector<std::string> const& args,
- cmExecutionStatus& status);
- bool HandleDownloadCommand(std::vector<std::string> const& args,
- cmExecutionStatus& status);
- bool HandleUploadCommand(std::vector<std::string> const& args,
- cmExecutionStatus& status);
-
- bool HandleTimestampCommand(std::vector<std::string> const& args,
- cmExecutionStatus& status);
- bool HandleGenerateCommand(std::vector<std::string> const& args,
- cmExecutionStatus& status);
- bool HandleLockCommand(std::vector<std::string> const& args,
- cmExecutionStatus& status);
- bool HandleSizeCommand(std::vector<std::string> const& args,
- cmExecutionStatus& status);
- bool HandleReadSymlinkCommand(std::vector<std::string> const& args,
- cmExecutionStatus& status);
- bool HandleCreateLinkCommand(std::vector<std::string> const& args,
- cmExecutionStatus& status);
- bool HandleGetRuntimeDependenciesCommand(
- std::vector<std::string> const& args, cmExecutionStatus& status);
-
-private:
- void AddEvaluationFile(const std::string& inputName,
- const std::string& outputExpr,
- const std::string& condition, bool inputIsContent,
- cmExecutionStatus& status);
};
#endif