sdrangel/sdrbase/dsp/nullsink.h

23 lines
524 B
C
Raw Normal View History

#ifndef INCLUDE_NULLSINK_H
#define INCLUDE_NULLSINK_H
#include <dsp/basebandsamplesink.h>
#include "export.h"
2015-08-13 23:00:28 -04:00
class Message;
2018-03-03 14:23:38 -05:00
class SDRBASE_API NullSink : public BasebandSampleSink {
public:
NullSink();
2015-08-13 23:00:28 -04:00
virtual ~NullSink();
2015-08-13 23:00:28 -04:00
virtual bool init(const Message& cmd);
2018-03-03 04:06:47 -05:00
virtual void feed(const SampleVector::const_iterator& begin, const SampleVector::const_iterator& end, bool positiveOnly);
2015-08-13 23:00:28 -04:00
virtual void start();
virtual void stop();
virtual bool handleMessage(const Message& message);
};
#endif // INCLUDE_NULLSINK_H