-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmainwindow.h
More file actions
67 lines (55 loc) · 1.33 KB
/
mainwindow.h
File metadata and controls
67 lines (55 loc) · 1.33 KB
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
#ifndef MAINWINDOW_H
#define MAINWINDOW_H
#include <iostream>
#include <QMainWindow>
#include <QFile>
#include <QDebug>
#include <QByteArray>
#include <QString>
#include <QStringList>
#include <QVector>
#include <QtCore/qmath.h>
#include <QFileDialog>
#include <QInputDialog>
#include <QLineEdit>
#include <QLineEdit>
#include <QRegExp>
#include <QRegExpValidator>
#include <QValidator>
#include <QButtonGroup>
#include <QFont>
#include <QProcess>
#include <QCryptographicHash>
#include <QMessageBox>
#include <QSqlDatabase>
#include <QSqlQuery>
#include <QSqlError>
#include <QSqlTableModel>
#include <QTableView>
#include <mycomplex.h>
#include <widgethelp.h>
#include <widgetdatabase.h>
#define _USE_MATH_DEFINES
using namespace std;
namespace Ui {
class MainWindow;
}
class MainWindow : public QMainWindow
{
Q_OBJECT
public:
explicit MainWindow(QWidget *parent = 0);
~MainWindow();
private slots:
private:
Ui::MainWindow *ui;
QFile file;
QFile out;
void my_main();
double my_sum(const QVector<double>, int);
int rev(int, int);
void bitReverseCopy(const QVector<double>, QVector<MyComplex>&, const int, const int);
MyComplex get_omiga_m(int m);
void iterativeFFT(QVector<MyComplex>&, const int, const int);
};
#endif // MAINWINDOW_H