-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.cpp
More file actions
31 lines (25 loc) · 669 Bytes
/
Copy pathmain.cpp
File metadata and controls
31 lines (25 loc) · 669 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
//C System-Headers
//
//C++ System headers
//
// Qt
//#include "Windows/mainwindow.h"
#include <QApplication>
#include <QObject>
#include <QThread>
// Project specific headers
#include "ModeCharacterization/test_modecharacterization.h"
#include "Program/Program/program.h"
#include "Panels/testpanels.h"
#include "Windows/mainwindow.h"
#include "Panels/SpectrumAnalyzer/spectrumanalyzer.h"
#include "Windows/mainwindow.h"
#include "Panels/InstrumentView/instrumentview.h"
#include "Algorithm/algorithm_test.h"
int main(int argc, char *argv[]) {
(void)argc;
(void)argv;
QApplication q_app(argc, argv);
MainWindow window;
return q_app.exec();
}