You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
394 B
C++
30 lines
394 B
C++
#ifndef ANALYZER_H
|
|
#define ANALYZER_H
|
|
|
|
#include <QDialog>
|
|
#include <QAudioDecoder>
|
|
|
|
|
|
namespace Ui {
|
|
class analyzer;
|
|
}
|
|
|
|
class analyzer : public QDialog
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit analyzer(QWidget *parent = nullptr);
|
|
~analyzer();
|
|
|
|
private slots:
|
|
void on_pushButton_clicked();
|
|
|
|
void on_pushButton_calculate_clicked();
|
|
|
|
private:
|
|
Ui::analyzer *ui;
|
|
};
|
|
|
|
#endif // ANALYZER_H
|