SystemInfoPage.h 352 B

1234567891011121314151617181920212223
  1. #ifndef SYSTEMINFOPAGE_H
  2. #define SYSTEMINFOPAGE_H
  3. #include <QMainWindow>
  4. namespace Ui {
  5. class SystemInfoPage;
  6. }
  7. class SystemInfoPage : public QMainWindow
  8. {
  9. Q_OBJECT
  10. public:
  11. explicit SystemInfoPage(QWidget *parent = nullptr);
  12. ~SystemInfoPage();
  13. void InitWnd();
  14. private:
  15. Ui::SystemInfoPage *ui;
  16. };
  17. #endif // SYSTEMINFOPAGE_H