sdrangel/sdrbase/dsp/nullsink.h

23 lines
500 B
C
Raw Normal View History

#ifndef INCLUDE_NULLSINK_H
#define INCLUDE_NULLSINK_H
#include "dsp/samplesink.h"
#include "util/export.h"
2015-08-13 23:00:28 -04:00
class Message;
2015-08-29 19:26:51 -04:00
class SDRANGEL_API NullSink : public SampleSink {
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);
virtual void feed(SampleVector::const_iterator begin, SampleVector::const_iterator end, bool positiveOnly);
virtual void start();
virtual void stop();
virtual bool handleMessage(const Message& message);
};
#endif // INCLUDE_NULLSINK_H