#ifndef MAINWINDOW_H #define MAINWINDOW_H #include // Forward declarations class SpeechReverser; namespace Ui { class MainWindow; } class MainWindow : public QMainWindow { Q_OBJECT private: Ui::MainWindow* ui; SpeechReverser* speechReverser; public: explicit MainWindow(QWidget *parent = nullptr); ~MainWindow(); protected slots: void onTextEditInputTextChanged(); }; #endif // MAINWINDOW_H