diff options
author | Martin Braun <martin.braun@ettus.com> | 2014-02-28 18:14:31 +0100 |
---|---|---|
committer | Martin Braun <martin.braun@ettus.com> | 2014-04-01 19:39:01 +0200 |
commit | 591aa45a7d20f305f1526f3601c33aa3d3ecb108 (patch) | |
tree | 552bf1259d82527fcaad8fa207631bbe6035bb18 /host/include | |
parent | e1ac59d7959fe06a898937a62a001c133e127b6f (diff) | |
download | uhd-591aa45a7d20f305f1526f3601c33aa3d3ecb108.tar.gz uhd-591aa45a7d20f305f1526f3601c33aa3d3ecb108.tar.bz2 uhd-591aa45a7d20f305f1526f3601c33aa3d3ecb108.zip |
uhd: multi_usrp now understands link rate info and can check for it
Diffstat (limited to 'host/include')
-rw-r--r-- | host/include/uhd/usrp/multi_usrp.hpp | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/host/include/uhd/usrp/multi_usrp.hpp b/host/include/uhd/usrp/multi_usrp.hpp index 5b4991202..49aad5d8c 100644 --- a/host/include/uhd/usrp/multi_usrp.hpp +++ b/host/include/uhd/usrp/multi_usrp.hpp @@ -119,14 +119,10 @@ public: virtual device::sptr get_device(void) = 0; //! Convenience method to get a RX streamer - rx_streamer::sptr get_rx_stream(const stream_args_t &args){ - return this->get_device()->get_rx_stream(args); - } + virtual rx_streamer::sptr get_rx_stream(const stream_args_t &args) = 0; //! Convenience method to get a TX streamer - tx_streamer::sptr get_tx_stream(const stream_args_t &args){ - return this->get_device()->get_tx_stream(args); - } + virtual tx_streamer::sptr get_tx_stream(const stream_args_t &args) = 0; /*! * Returns identifying information about this USRP's configuration. |