diff options
Diffstat (limited to 'host/include')
-rw-r--r-- | host/include/uhd/types/device_addr.hpp | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/host/include/uhd/types/device_addr.hpp b/host/include/uhd/types/device_addr.hpp index dd60df2e7..b9d3659c0 100644 --- a/host/include/uhd/types/device_addr.hpp +++ b/host/include/uhd/types/device_addr.hpp @@ -14,6 +14,7 @@ #include <stdexcept> #include <vector> #include <string> +#include <map> namespace uhd{ @@ -43,6 +44,12 @@ namespace uhd{ device_addr_t(const std::string &args = ""); /*! + * Create a device address from a std::map + * \param info the device info map + */ + device_addr_t(const std::map<std::string, std::string> &info); + + /*! * Convert a device address into a pretty print string. * \return a printable string representing the device address */ |