diff options
author | Josh Blum <josh@joshknows.com> | 2010-02-12 18:43:21 -0800 |
---|---|---|
committer | Josh Blum <josh@joshknows.com> | 2010-02-12 18:43:21 -0800 |
commit | 259f5babf1e1bc1595ad54c6588c1ff5117dc2e3 (patch) | |
tree | cd4e82dfd650b69d9d36d7c95f34bd76ede4972b /include/uhd/usrp/mboard/usrp2.hpp | |
parent | 9fff25f4e5da179ea29ff44278e0415a337870cb (diff) | |
download | uhd-259f5babf1e1bc1595ad54c6588c1ff5117dc2e3.tar.gz uhd-259f5babf1e1bc1595ad54c6588c1ff5117dc2e3.tar.bz2 uhd-259f5babf1e1bc1595ad54c6588c1ff5117dc2e3.zip |
Made use of templated dict to replace used of map
and to get rid of utility call.
Diffstat (limited to 'include/uhd/usrp/mboard/usrp2.hpp')
-rw-r--r-- | include/uhd/usrp/mboard/usrp2.hpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/uhd/usrp/mboard/usrp2.hpp b/include/uhd/usrp/mboard/usrp2.hpp index 4950f4cd1..91f729f6f 100644 --- a/include/uhd/usrp/mboard/usrp2.hpp +++ b/include/uhd/usrp/mboard/usrp2.hpp @@ -22,7 +22,7 @@ #include <uhd/device_addr.hpp> #include <uhd/usrp/dboard/manager.hpp> #include <uhd/transport/udp.hpp> -#include <map> +#include <uhd/dict.hpp> namespace uhd{ namespace usrp{ namespace mboard{ @@ -46,7 +46,7 @@ private: void get(const wax::obj &, wax::obj &); void set(const wax::obj &, const wax::obj &); - std::map<std::string, dboard::manager::sptr> _dboard_managers; + uhd::dict<std::string, dboard::manager::sptr> _dboard_managers; uhd::transport::udp::sptr _udp_ctrl_transport; uhd::transport::udp::sptr _udp_data_transport; }; |