Browse Source

Passage de la boite de dialogue en classe

François Drouhard 7 years ago
parent
commit
68e41fb8a9
2 changed files with 23 additions and 0 deletions
  1. 6 0
      Dialog.cpp
  2. 17 0
      Dialog.h

+ 6 - 0
Dialog.cpp

@@ -0,0 +1,6 @@
+#include "Dialog.h"
+
+Dialog::Dialog(QObject *parent) : QObject(parent)
+{
+
+}

+ 17 - 0
Dialog.h

@@ -0,0 +1,17 @@
+#ifndef DIALOG_H
+#define DIALOG_H
+
+#include <QObject>
+
+class Dialog : public QObject
+{
+    Q_OBJECT
+public:
+    explicit Dialog(QObject *parent = nullptr);
+
+signals:
+
+public slots:
+};
+
+#endif // DIALOG_H