test.h 239 B

12345678910111213141516171819
  1. #ifndef TEST_H
  2. #define TEST_H
  3. #include <QMainWindow>
  4. #include <QObject>
  5. #include <QWidget>
  6. class test : public QMainWindow
  7. {
  8. Q_OBJECT
  9. public:
  10. explicit test(QWidget *parent = nullptr);
  11. signals:
  12. public slots:
  13. };
  14. #endif // TEST_H