aboutsummaryrefslogtreecommitdiffstats
path: root/host/lib/usrp/usrp_e/codec_ctrl.cpp
diff options
context:
space:
mode:
authorJosh Blum <josh@joshknows.com>2010-06-04 21:13:27 +0000
committerJosh Blum <josh@joshknows.com>2010-06-04 21:13:27 +0000
commit685cf432a373ee7556db507f7958f51e6ccf581a (patch)
tree56524f4d40152aa419832ddd7d8a05ac9045766e /host/lib/usrp/usrp_e/codec_ctrl.cpp
parentfcdbea4f089db2405820ad598979e639cf131ff5 (diff)
downloaduhd-685cf432a373ee7556db507f7958f51e6ccf581a.tar.gz
uhd-685cf432a373ee7556db507f7958f51e6ccf581a.tar.bz2
uhd-685cf432a373ee7556db507f7958f51e6ccf581a.zip
prefixed helper classes with usrp_e to avoid collision
Diffstat (limited to 'host/lib/usrp/usrp_e/codec_ctrl.cpp')
-rw-r--r--host/lib/usrp/usrp_e/codec_ctrl.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/host/lib/usrp/usrp_e/codec_ctrl.cpp b/host/lib/usrp/usrp_e/codec_ctrl.cpp
index e86fde346..b19606020 100644
--- a/host/lib/usrp/usrp_e/codec_ctrl.cpp
+++ b/host/lib/usrp/usrp_e/codec_ctrl.cpp
@@ -34,7 +34,7 @@ static const bool codec_debug = true;
/***********************************************************************
* Codec Control Implementation
**********************************************************************/
-class usrp_e_codec_ctrl_impl : public codec_ctrl{
+class usrp_e_codec_ctrl_impl : public usrp_e_codec_ctrl{
public:
//structors
usrp_e_codec_ctrl_impl(usrp_e_iface::sptr iface);
@@ -242,6 +242,6 @@ void usrp_e_codec_ctrl_impl::recv_reg(boost::uint8_t addr){
/***********************************************************************
* Codec Control Make
**********************************************************************/
-codec_ctrl::sptr codec_ctrl::make(usrp_e_iface::sptr iface){
+usrp_e_codec_ctrl::sptr usrp_e_codec_ctrl::make(usrp_e_iface::sptr iface){
return sptr(new usrp_e_codec_ctrl_impl(iface));
}