diff options
author | Josh Blum <josh@joshknows.com> | 2011-01-26 11:28:52 -0800 |
---|---|---|
committer | Josh Blum <josh@joshknows.com> | 2011-01-26 11:28:52 -0800 |
commit | 37d2832110333ec2691fafa414b362308b002f51 (patch) | |
tree | 4a4758d1506f896c29a2f63e7aa5c4344eac3200 | |
parent | db66f24ace0009536669d1e815dd1a936cff59be (diff) | |
download | uhd-37d2832110333ec2691fafa414b362308b002f51.tar.gz uhd-37d2832110333ec2691fafa414b362308b002f51.tar.bz2 uhd-37d2832110333ec2691fafa414b362308b002f51.zip |
usrp: rename special_props to have a unique prefix, and typedef it in dboard iface
-rw-r--r-- | host/include/uhd/usrp/dboard_iface.hpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/host/include/uhd/usrp/dboard_iface.hpp b/host/include/uhd/usrp/dboard_iface.hpp index ed76383eb..b28e50082 100644 --- a/host/include/uhd/usrp/dboard_iface.hpp +++ b/host/include/uhd/usrp/dboard_iface.hpp @@ -29,7 +29,7 @@ namespace uhd{ namespace usrp{ //! Special properties that differentiate this daughterboard slot -struct special_props_t{ +struct dboard_iface_special_props_t{ /*! * Soft clock divider: * When a motherboard cannot provided a divided dboard clock, @@ -58,6 +58,7 @@ struct special_props_t{ class UHD_API dboard_iface{ public: typedef boost::shared_ptr<dboard_iface> sptr; + typedef dboard_iface_special_props_t special_props_t; //! tells the host which unit to use enum unit_t{ |