Electric Tiger DAQ  1.0.0
Data Acquisition Software for the Electric Tiger Experiment
test_spectrum_analyzer.h
1 #ifndef TEST_SPECTRUM_ANALYZER_H
2 #define TEST_SPECTRUM_ANALYZER_H
3 
4 //C System-Headers
5 //
6 //C++ System headers
7 #include <memory>
8 //Qt Headers
9 #include <QTimer>
10 #include <QObject>
11 //OpenCV Headers
12 //
13 //Boost Headers
14 //
15 //Project specific headers
16 #include "Digitizer/ATS9462Engine/ats9462engine.h"
17 #include "../../Windows/mainwindow.h"
18 #include "spectrumanalyzer.h"
19 
20 namespace etig {
21 
22 namespace test {
23 
24 class
26 
27 public:
28  void Test();
29 
30 private:
31  MainWindow* w;
32  SpectrumAnalyzer* spec;
33  std::shared_ptr<ATS9462Engine> digitizer;
34 
35 };
36 
37 }
38 
39 }
40 
41 #endif // TEST_SPECTRUM_ANALYZER_H
Definition: test_spectrum_analyzer.h:24
Definition: algorithm.cpp:16
Definition: mainwindow.h:26
Definition: spectrumanalyzer.h:33