diff options
author | Josh Blum <josh@joshknows.com> | 2010-02-09 16:28:16 -0800 |
---|---|---|
committer | Josh Blum <josh@joshknows.com> | 2010-02-09 16:28:16 -0800 |
commit | c5480830c6e8e8e862523b3ebf3117fda8a100df (patch) | |
tree | 65aac999502e58efe5cdfad71bef7ddc3d201444 /lib/device.cpp | |
parent | dfd7f99eecefc19effd97034048641de9d6b7e94 (diff) | |
download | uhd-c5480830c6e8e8e862523b3ebf3117fda8a100df.tar.gz uhd-c5480830c6e8e8e862523b3ebf3117fda8a100df.tar.bz2 uhd-c5480830c6e8e8e862523b3ebf3117fda8a100df.zip |
renamed usrp_uhd to uhd
Diffstat (limited to 'lib/device.cpp')
-rw-r--r-- | lib/device.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/lib/device.cpp b/lib/device.cpp index 5718c71e7..4b51a70d4 100644 --- a/lib/device.cpp +++ b/lib/device.cpp @@ -15,13 +15,13 @@ // along with this program. If not, see <http://www.gnu.org/licenses/>. // -#include <usrp_uhd/usrp/usrp.hpp> -#include <usrp_uhd/usrp/mboard/usrp2.hpp> -#include <usrp_uhd/device.hpp> +#include <uhd/usrp/usrp.hpp> +#include <uhd/usrp/mboard/usrp2.hpp> +#include <uhd/device.hpp> #include <boost/format.hpp> #include <stdexcept> -using namespace usrp_uhd; +using namespace uhd; std::vector<device_addr_t> device::discover(const device_addr_t & hint = device_addr_t()){ std::vector<device_addr_t> device_addrs; @@ -58,7 +58,7 @@ device::sptr device::make(const device_addr_t & hint, size_t which){ //create the new device with the discovered address //TODO only a usrp device will be made (until others are supported) if (true){ - return sptr(new usrp_uhd::usrp::usrp(device_addrs.at(which))); + return sptr(new uhd::usrp::usrp(device_addrs.at(which))); } throw std::runtime_error("cant make a device"); } |