mirror of
https://github.com/f4exb/sdrangel.git
synced 2025-02-03 09:44:01 -05:00
SampleMOFifo: removed constness on get data methods
This commit is contained in:
parent
626e07dd85
commit
6a544d2869
@ -48,8 +48,8 @@ public:
|
||||
);
|
||||
void writeAsync(const SampleVector::const_iterator& begin, unsigned int amount, unsigned int stream);
|
||||
|
||||
const std::vector<SampleVector>& getData() { return m_data; }
|
||||
const SampleVector& getData(unsigned int stream) { return m_data[stream]; }
|
||||
std::vector<SampleVector>& getData() { return m_data; }
|
||||
SampleVector& getData(unsigned int stream) { return m_data[stream]; }
|
||||
unsigned int getNbStreams() const { return m_data.size(); }
|
||||
|
||||
unsigned int remainderSync()
|
||||
|
Loading…
Reference in New Issue
Block a user