Commit 89ae5fee by grlabu

Upload New File

parent 3d3fddfb
Showing with 26 additions and 0 deletions
#ifndef RULES_H
#define RULES_H
#include <QMainWindow> // Include QMainWindow header instead of QDialog
#include <QDialog>
namespace Ui {
class rules;
}
class rules : public QMainWindow // Derive from QMainWindow instead of QDialog
{
Q_OBJECT
public:
explicit rules(QWidget *parent = nullptr);
~rules();
private slots:
void on_Back_clicked();
private:
Ui::rules *ui;
};
#endif // RULES_H
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment