summaryrefslogtreecommitdiffstats
path: root/Source/cmRuntimeDependencyArchive.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/cmRuntimeDependencyArchive.h
parent64f987c174691982e1f01eadb2c76693ea674e52 (diff)
downloadCMake-9703c65718689e56bfa100f1965b6a83af87e090.zip
CMake-9703c65718689e56bfa100f1965b6a83af87e090.tar.gz
CMake-9703c65718689e56bfa100f1965b6a83af87e090.tar.bz2
cmFileCommand: put subcommands in unnamed namespace
Diffstat (limited to 'Source/cmRuntimeDependencyArchive.h')
-rw-r--r--Source/cmRuntimeDependencyArchive.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/Source/cmRuntimeDependencyArchive.h b/Source/cmRuntimeDependencyArchive.h
index 67efec7..e063121 100644
--- a/Source/cmRuntimeDependencyArchive.h
+++ b/Source/cmRuntimeDependencyArchive.h
@@ -14,14 +14,14 @@
#include <string>
#include <vector>
-class cmCommand;
+class cmExecutionStatus;
class cmMakefile;
class cmRuntimeDependencyArchive
{
public:
explicit cmRuntimeDependencyArchive(
- cmCommand* command, std::vector<std::string> searchDirectories,
+ cmExecutionStatus& status, std::vector<std::string> searchDirectories,
std::string bundleExecutable,
const std::vector<std::string>& preIncludeRegexes,
const std::vector<std::string>& preExcludeRegexes,
@@ -51,7 +51,7 @@ public:
const std::set<std::string>& GetUnresolvedPaths();
private:
- cmCommand* Command;
+ cmExecutionStatus& Status;
std::unique_ptr<cmBinUtilsLinker> Linker;
std::string GetRuntimeDependenciesTool;