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/usrp/usrp.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/usrp/usrp.cpp')
-rw-r--r-- | lib/usrp/usrp.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/lib/usrp/usrp.cpp b/lib/usrp/usrp.cpp index e3016be5f..59dd49dd1 100644 --- a/lib/usrp/usrp.cpp +++ b/lib/usrp/usrp.cpp @@ -15,24 +15,24 @@ // along with this program. If not, see <http://www.gnu.org/licenses/>. // -#include <usrp_uhd/usrp/usrp.hpp> -#include <usrp_uhd/usrp/mboard/test.hpp> -#include <usrp_uhd/utils.hpp> +#include <uhd/usrp/usrp.hpp> +#include <uhd/usrp/mboard/test.hpp> +#include <uhd/utils.hpp> #include <boost/format.hpp> #include <boost/bind.hpp> #include <stdexcept> -using namespace usrp_uhd::usrp; +using namespace uhd::usrp; /*********************************************************************** * default callbacks for the send and recv * these should be replaced with callbacks from the mboard object **********************************************************************/ -static void send_raw_default(const usrp_uhd::device::send_args_t &){ +static void send_raw_default(const uhd::device::send_args_t &){ throw std::runtime_error("No callback registered for send raw"); } -static void recv_raw_default(const usrp_uhd::device::recv_args_t &){ +static void recv_raw_default(const uhd::device::recv_args_t &){ throw std::runtime_error("No callback registered for recv raw"); } |