diff options
author | Ryan Marlow <ryan.marlow@ettus.com> | 2018-06-13 12:41:24 -0400 |
---|---|---|
committer | Martin Braun <martin.braun@ettus.com> | 2018-12-19 09:36:51 -0800 |
commit | cbb634bc7abebba7f2865f0fec03fd504c4d2db4 (patch) | |
tree | 7d4d72f8ee2b402021ceea70c9e2481916432e25 /host/lib | |
parent | ea0b759c0211a45c50421709e6d220c4504833e5 (diff) | |
download | uhd-cbb634bc7abebba7f2865f0fec03fd504c4d2db4.tar.gz uhd-cbb634bc7abebba7f2865f0fec03fd504c4d2db4.tar.bz2 uhd-cbb634bc7abebba7f2865f0fec03fd504c4d2db4.zip |
radio_ctrl_impl: move continuous_streaming to protected.
Diffstat (limited to 'host/lib')
-rw-r--r-- | host/lib/include/uhdlib/rfnoc/radio_ctrl_impl.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/host/lib/include/uhdlib/rfnoc/radio_ctrl_impl.hpp b/host/lib/include/uhdlib/rfnoc/radio_ctrl_impl.hpp index fcfd55450..80556343b 100644 --- a/host/lib/include/uhdlib/rfnoc/radio_ctrl_impl.hpp +++ b/host/lib/include/uhdlib/rfnoc/radio_ctrl_impl.hpp @@ -216,6 +216,7 @@ protected: // TODO see what's protected and what's private size_t _num_tx_channels; size_t _num_rx_channels; + std::vector<bool> _continuous_streaming; private: /************************************************************************ @@ -241,7 +242,6 @@ private: std::map<size_t, double> _tx_bandwidth; std::map<size_t, double> _rx_bandwidth; - std::vector<bool> _continuous_streaming; }; /* class radio_ctrl_impl */ }} /* namespace uhd::rfnoc */ |