diff options
author | Josh Blum <josh@joshknows.com> | 2010-08-19 17:15:30 -0700 |
---|---|---|
committer | Josh Blum <josh@joshknows.com> | 2010-08-19 17:15:30 -0700 |
commit | a32c3217cb703430f417cf5a3b816f6fd0f70ed3 (patch) | |
tree | b50b370c4ce9a50c1218e1f5b2ff773840fb2d2f /host/include | |
parent | 0f2bf7bf709f417e0ef5a0860e18b190f740fd1b (diff) | |
parent | d99e22971975e9b5bfb966741684963be8f049f6 (diff) | |
download | uhd-a32c3217cb703430f417cf5a3b816f6fd0f70ed3.tar.gz uhd-a32c3217cb703430f417cf5a3b816f6fd0f70ed3.tar.bz2 uhd-a32c3217cb703430f417cf5a3b816f6fd0f70ed3.zip |
Merge branch 'master' into usrp1
Diffstat (limited to 'host/include')
-rw-r--r-- | host/include/uhd/utils/CMakeLists.txt | 1 | ||||
-rw-r--r-- | host/include/uhd/utils/images.hpp | 38 |
2 files changed, 39 insertions, 0 deletions
diff --git a/host/include/uhd/utils/CMakeLists.txt b/host/include/uhd/utils/CMakeLists.txt index ef8e64ce0..b39b6083c 100644 --- a/host/include/uhd/utils/CMakeLists.txt +++ b/host/include/uhd/utils/CMakeLists.txt @@ -23,6 +23,7 @@ INSTALL(FILES byteswap.ipp exception.hpp gain_group.hpp + images.hpp pimpl.hpp props.hpp safe_main.hpp diff --git a/host/include/uhd/utils/images.hpp b/host/include/uhd/utils/images.hpp new file mode 100644 index 000000000..8b5a1eedd --- /dev/null +++ b/host/include/uhd/utils/images.hpp @@ -0,0 +1,38 @@ +// +// Copyright 2010 Ettus Research LLC +// +// This program is free software: you can redistribute it and/or modify +// it under the terms of the GNU General Public License as published by +// the Free Software Foundation, either version 3 of the License, or +// (at your option) any later version. +// +// This program is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +// GNU General Public License for more details. +// +// You should have received a copy of the GNU General Public License +// along with this program. If not, see <http://www.gnu.org/licenses/>. +// + +#ifndef INCLUDED_UHD_UTILS_IMAGES_HPP +#define INCLUDED_UHD_UTILS_IMAGES_HPP + +#include <uhd/config.hpp> +#include <string> + +namespace uhd{ + + /*! + * Search for an image in the system image paths: + * Search compiled-in paths and environment variable paths + * for a specific image file with the provided file name. + * \param image_name the name of the file + * \return the full system path to the file + * \throw exception if the image was not found + */ + UHD_API std::string find_image_path(const std::string &image_name); + +} //namespace uhd + +#endif /* INCLUDED_UHD_UTILS_IMAGES_HPP */ |