diff options
author | Josh Blum <josh@joshknows.com> | 2010-02-18 15:30:34 -0800 |
---|---|---|
committer | Josh Blum <josh@joshknows.com> | 2010-02-18 15:30:34 -0800 |
commit | b4e5df4080b276ff1bf7cf896bd60630cdaab652 (patch) | |
tree | e95043c7812fb5113cfd44f97b69f0100ac29cec /host/lib/usrp/mboard/usrp2/dboard_interface.hpp | |
parent | f439fe8218b05a67148332ffefd2053ba3c0c19d (diff) | |
download | uhd-b4e5df4080b276ff1bf7cf896bd60630cdaab652.tar.gz uhd-b4e5df4080b276ff1bf7cf896bd60630cdaab652.tar.bz2 uhd-b4e5df4080b276ff1bf7cf896bd60630cdaab652.zip |
Flattened the usrp2 impl properties guts.
Created init methods for various sub-parts.
Added the ddc control (still needs update transaction).
Diffstat (limited to 'host/lib/usrp/mboard/usrp2/dboard_interface.hpp')
-rw-r--r-- | host/lib/usrp/mboard/usrp2/dboard_interface.hpp | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/host/lib/usrp/mboard/usrp2/dboard_interface.hpp b/host/lib/usrp/mboard/usrp2/dboard_interface.hpp index 0f78dec17..1040e53ba 100644 --- a/host/lib/usrp/mboard/usrp2/dboard_interface.hpp +++ b/host/lib/usrp/mboard/usrp2/dboard_interface.hpp @@ -16,14 +16,15 @@ // #include <uhd/usrp/dboard/interface.hpp> -#include "impl_base.hpp" #ifndef INCLUDED_DBOARD_INTERFACE_HPP #define INCLUDED_DBOARD_INTERFACE_HPP +class usrp2_impl; //dummy class declaration + class dboard_interface : public uhd::usrp::dboard::interface{ public: - dboard_interface(impl_base *impl); + dboard_interface(usrp2_impl *impl); ~dboard_interface(void); @@ -56,7 +57,7 @@ private: bool readback ); - impl_base *_impl; + usrp2_impl *_impl; }; #endif /* INCLUDED_DBOARD_INTERFACE_HPP */ |