mirror of
https://github.com/f4exb/sdrangel.git
synced 2025-11-16 05:03:17 -05:00
Interferometer: use new signature for pull virtual method
This commit is contained in:
parent
65f1e2a554
commit
d9a9ae90c8
@ -101,9 +101,10 @@ void Interferometer::feed(const SampleVector::const_iterator& begin, const Sampl
|
||||
m_sink->feed(begin, end, sinkIndex);
|
||||
}
|
||||
|
||||
void Interferometer::pull(Sample& sample, unsigned int sourceIndex)
|
||||
void Interferometer::pull(const SampleVector::const_iterator& begin, unsigned int nbSamples, unsigned int sourceIndex)
|
||||
{
|
||||
(void) sample;
|
||||
(void) begin;
|
||||
(void) nbSamples;
|
||||
(void) sourceIndex;
|
||||
}
|
||||
|
||||
|
||||
@ -94,7 +94,7 @@ public:
|
||||
virtual void startSources() {}
|
||||
virtual void stopSources() {}
|
||||
virtual void feed(const SampleVector::const_iterator& begin, const SampleVector::const_iterator& end, unsigned int sinkIndex);
|
||||
virtual void pull(Sample& sample, unsigned int sourceIndex);
|
||||
virtual void pull(const SampleVector::const_iterator& begin, unsigned int nbSamples, unsigned int sourceIndex);
|
||||
virtual bool handleMessage(const Message& cmd); //!< Processing of a message. Returns true if message has actually been processed
|
||||
|
||||
virtual void getIdentifier(QString& id) { id = objectName(); }
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user