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.
fftengine.h
Go to the documentation of this file.
1 #ifndef INCLUDE_FFTENGINE_H
2 #define INCLUDE_FFTENGINE_H
3 
4 #include "dsp/dsptypes.h"
5 #include "export.h"
6 
8 public:
9  virtual ~FFTEngine();
10 
11  virtual void configure(int n, bool inverse) = 0;
12  virtual void transform() = 0;
13 
14  virtual Complex* in() = 0;
15  virtual Complex* out() = 0;
16 
17  static FFTEngine* create();
18 };
19 
20 #endif // INCLUDE_FFTENGINE_H
void * create(QString type)
#define SDRBASE_API
Definition: export.h:40
std::complex< Real > Complex
Definition: dsptypes.h:43