SDRAngel  4.11.5
Developer docs for <a href="https://github.com/f4exb/sdrangel">SDRangel<\a>, an Open Source Qt5 / OpenGL 3.0+ SDR and signal analyzer frontend to various hardware.
spectrumscopecombovis.h
Go to the documentation of this file.
1 #ifndef INCLUDE_SPECTRUMSCOPENGCOMBOVIS_H
2 #define INCLUDE_SPECTRUMSCOPENGCOMBOVIS_H
3 
5 #include "dsp/spectrumvis.h"
6 #include "export.h"
7 
8 class Message;
9 class ScopeVis;
10 
12 public:
13 
14  SpectrumScopeComboVis(SpectrumVis* spectrumVis, ScopeVis* scopeVis);
15  virtual ~SpectrumScopeComboVis();
16 
17  virtual void feed(const SampleVector::const_iterator& begin, const SampleVector::const_iterator& end, bool positiveOnly);
18  virtual void start();
19  virtual void stop();
20  virtual bool handleMessage(const Message& message);
21 
22 private:
25 };
26 
27 #endif // INCLUDE_SPECTRUMSCOPENGCOMBOVIS_H
virtual void feed(const SampleVector::const_iterator &begin, const SampleVector::const_iterator &end, bool positiveOnly)=0
virtual void start()=0
#define SDRGUI_API
Definition: export.h:52
virtual bool handleMessage(const Message &cmd)=0
Processing of a message. Returns true if message has actually been processed.
virtual void stop()=0