Dialog.h 203 B

1234567891011121314151617
  1. #ifndef DIALOG_H
  2. #define DIALOG_H
  3. #include <QObject>
  4. class Dialog : public QObject
  5. {
  6. Q_OBJECT
  7. public:
  8. explicit Dialog(QObject *parent = nullptr);
  9. signals:
  10. public slots:
  11. };
  12. #endif // DIALOG_H