Fork for kernel 5.18 API change.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

38 lines
520 B

4 years ago
#ifndef MAINWINDOW_H
#define MAINWINDOW_H
#include <QMainWindow>
4 years ago
#include "SonoDevice.h"
4 years ago
QT_BEGIN_NAMESPACE
4 years ago
namespace Ui { class MainWindow;
}
4 years ago
QT_END_NAMESPACE
class MainWindow : public QMainWindow
{
Q_OBJECT
public:
4 years ago
MainWindow(QWidget* parent = nullptr);
4 years ago
~MainWindow();
4 years ago
//uncrustify off
private slots:
//uncrustify on
void on_pushButton_clicked();
void on_pushButton_2_clicked();
void on_pushButton_3_clicked();
4 years ago
private:
4 years ago
Ui::MainWindow* ui;
SonoDevice* sd;
int _counter;
4 years ago
};
4 years ago
#endif //MAINWINDOW_H