diff options
author | Josh Blum <josh@joshknows.com> | 2010-08-19 17:10:16 -0700 |
---|---|---|
committer | Josh Blum <josh@joshknows.com> | 2010-08-19 17:10:16 -0700 |
commit | d99e22971975e9b5bfb966741684963be8f049f6 (patch) | |
tree | 8a57124f49332ee7bb8188f9345a0277d1160e41 /host/lib/utils/paths.cpp | |
parent | b84f2da152eb65afe89240941bd02d67b3582eae (diff) | |
download | uhd-d99e22971975e9b5bfb966741684963be8f049f6.tar.gz uhd-d99e22971975e9b5bfb966741684963be8f049f6.tar.bz2 uhd-d99e22971975e9b5bfb966741684963be8f049f6.zip |
uhd: added image utils code to search the images paths for image files
Diffstat (limited to 'host/lib/utils/paths.cpp')
-rw-r--r-- | host/lib/utils/paths.cpp | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/host/lib/utils/paths.cpp b/host/lib/utils/paths.cpp index 6ad12d3cc..9e9525caf 100644 --- a/host/lib/utils/paths.cpp +++ b/host/lib/utils/paths.cpp @@ -85,17 +85,3 @@ std::vector<fs::path> get_module_paths(void){ paths.push_back(fs::path(INSTALLER_PKG_DATA_DIR) / "modules"); return paths; } - -/*********************************************************************** - * Find a image in the image paths - **********************************************************************/ -std::string find_image_path(const std::string &image_name){ - if (fs::exists(image_name)){ - return fs::system_complete(image_name).file_string(); - } - BOOST_FOREACH(const fs::path &path, get_image_paths()){ - fs::path image_path = path / image_name; - if (fs::exists(image_path)) return image_path.file_string(); - } - throw std::runtime_error("Could not find path for image: " + image_name); -} |