Khushboo Mehta f9a5acb624 first commit
2026-02-20 14:32:19 +01:00

19 lines
248 B
C++

#ifndef MAINWINDOW_H
#define MAINWINDOW_H
#include <QMainWindow>
class MainWindow : public QMainWindow
{
Q_OBJECT
public:
MainWindow(QWidget *parent = nullptr);
~MainWindow();
private:
void setupUi();
};
#endif // MAINWINDOW_H