浏览代码

Passage de la boite de dialogue en classe

François Drouhard 7 年之前
父节点
当前提交
68e41fb8a9
共有 2 个文件被更改,包括 23 次插入0 次删除
  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