diff options
author | Josh Blum <josh@joshknows.com> | 2010-07-22 10:26:48 -0700 |
---|---|---|
committer | Josh Blum <josh@joshknows.com> | 2010-07-22 10:26:48 -0700 |
commit | f1fe66acd4fd32fe0f99548f11e8f4ab28b4c9f1 (patch) | |
tree | 9dff5e16ea44c76baefeeab5c8d5a7c26566e67e /host/lib/usrp/dboard_ctor_args.hpp | |
parent | 02be26f6b89869cb7f3ced716cf5447b913d58d5 (diff) | |
download | uhd-f1fe66acd4fd32fe0f99548f11e8f4ab28b4c9f1.tar.gz uhd-f1fe66acd4fd32fe0f99548f11e8f4ab28b4c9f1.tar.bz2 uhd-f1fe66acd4fd32fe0f99548f11e8f4ab28b4c9f1.zip |
usrp: changed opaque pointer implementation for dboard contructor args
Diffstat (limited to 'host/lib/usrp/dboard_ctor_args.hpp')
-rw-r--r-- | host/lib/usrp/dboard_ctor_args.hpp | 20 |
1 files changed, 12 insertions, 8 deletions
diff --git a/host/lib/usrp/dboard_ctor_args.hpp b/host/lib/usrp/dboard_ctor_args.hpp index 13abe79e8..708f2ea08 100644 --- a/host/lib/usrp/dboard_ctor_args.hpp +++ b/host/lib/usrp/dboard_ctor_args.hpp @@ -15,18 +15,22 @@ // along with this program. If not, see <http://www.gnu.org/licenses/>. // -#ifndef INCLUDED_DBOARD_CTOR_ARGS_HPP -#define INCLUDED_DBOARD_CTOR_ARGS_HPP +#ifndef INCLUDED_LIBUHD_USRP_DBOARD_CTOR_ARGS_HPP +#define INCLUDED_LIBUHD_USRP_DBOARD_CTOR_ARGS_HPP #include <uhd/usrp/dboard_id.hpp> #include <uhd/usrp/dboard_base.hpp> #include <uhd/usrp/dboard_iface.hpp> #include <string> -struct uhd::usrp::dboard_base::ctor_args_impl{ - std::string sd_name; - dboard_iface::sptr db_iface; - dboard_id_t rx_id, tx_id; -}; +namespace uhd{ namespace usrp{ -#endif /* INCLUDED_DBOARD_CTOR_ARGS_HPP */ + struct dboard_ctor_args_t{ + std::string sd_name; + dboard_iface::sptr db_iface; + dboard_id_t rx_id, tx_id; + }; + +}} //namespace + +#endif /* INCLUDED_LIBUHD_USRP_DBOARD_CTOR_ARGS_HPP */ |