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