summaryrefslogtreecommitdiffstats
path: root/Source/cmRuntimeDependencyArchive.h
diff options
context:
space:
mode:
authorKyle Edwards <kyle.edwards@kitware.com>2021-04-20 20:16:57 (GMT)
committerKyle Edwards <kyle.edwards@kitware.com>2021-06-03 12:37:25 (GMT)
commitb613e09778260c26c6323026dc2ccb980c102f3e (patch)
treeb1d3b836f03bb7af750aef4a6680ad104d786053 /Source/cmRuntimeDependencyArchive.h
parent9c33ff4dda643f8a93d55f9895e31dce9056134f (diff)
downloadCMake-b613e09778260c26c6323026dc2ccb980c102f3e.zip
CMake-b613e09778260c26c6323026dc2ccb980c102f3e.tar.gz
CMake-b613e09778260c26c6323026dc2ccb980c102f3e.tar.bz2
cmRuntimeDependencyArchive: Fix const-ness of method signatures
Diffstat (limited to 'Source/cmRuntimeDependencyArchive.h')
-rw-r--r--Source/cmRuntimeDependencyArchive.h20
1 files changed, 10 insertions, 10 deletions
diff --git a/Source/cmRuntimeDependencyArchive.h b/Source/cmRuntimeDependencyArchive.h
index 1dc3261..3f368c5 100644
--- a/Source/cmRuntimeDependencyArchive.h
+++ b/Source/cmRuntimeDependencyArchive.h
@@ -36,21 +36,21 @@ public:
void SetError(const std::string& e);
- std::string GetBundleExecutable();
- const std::vector<std::string>& GetSearchDirectories();
- std::string GetGetRuntimeDependenciesTool();
- bool GetGetRuntimeDependenciesCommand(const std::string& search,
- std::vector<std::string>& command);
- bool IsPreExcluded(const std::string& name);
- bool IsPostExcluded(const std::string& name);
+ const std::string& GetBundleExecutable() const;
+ const std::vector<std::string>& GetSearchDirectories() const;
+ const std::string& GetGetRuntimeDependenciesTool() const;
+ bool GetGetRuntimeDependenciesCommand(
+ const std::string& search, std::vector<std::string>& command) const;
+ bool IsPreExcluded(const std::string& name) const;
+ bool IsPostExcluded(const std::string& name) const;
void AddResolvedPath(const std::string& name, const std::string& path,
bool& unique);
void AddUnresolvedPath(const std::string& name);
- cmMakefile* GetMakefile();
- const std::map<std::string, std::set<std::string>>& GetResolvedPaths();
- const std::set<std::string>& GetUnresolvedPaths();
+ cmMakefile* GetMakefile() const;
+ const std::map<std::string, std::set<std::string>>& GetResolvedPaths() const;
+ const std::set<std::string>& GetUnresolvedPaths() const;
private:
cmExecutionStatus& Status;