aboutsummaryrefslogtreecommitdiffstats
path: root/host/include
diff options
context:
space:
mode:
authorMartin Braun <martin.braun@ettus.com>2014-02-28 18:14:31 +0100
committerMartin Braun <martin.braun@ettus.com>2014-04-10 21:03:10 +0200
commitd52f44904d275d301106c799056596e9105e7916 (patch)
treee101871928e79da33843fe937f373a905ab11365 /host/include
parent6a72c16ee909af95b6965f26fb588a29485ef414 (diff)
downloaduhd-d52f44904d275d301106c799056596e9105e7916.tar.gz
uhd-d52f44904d275d301106c799056596e9105e7916.tar.bz2
uhd-d52f44904d275d301106c799056596e9105e7916.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.hpp8
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 aac40efe5..883e4da3d 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. See also uhd::device::get_rx_stream().
- 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. See also uhd::device::get_rx_stream().
- 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.