You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

33 line
603 B

  1. #ifndef MAINWINDOW_H
  2. #define MAINWINDOW_H
  3. #include <QMainWindow>
  4. #include <QPushButton>
  5. #include <QGridLayout>
  6. #include <QLabel>
  7. #include <QTextEdit>
  8. #include "MainPage.h"
  9. #include "VisualInspectionPage.h"
  10. #include "CableTestPage.h"
  11. class CCableTestBench;
  12. class MainWindow : public QMainWindow
  13. {
  14. Q_OBJECT
  15. public:
  16. MainWindow(QWidget *parent = 0,CCableTestBench* ProgramHandle = 0);
  17. ~MainWindow();
  18. CMainPage *mMainPage;
  19. CCableTestBench *mProgramHandle;
  20. CVisualInspectionPage *mVisualInspPage;
  21. CCableTestPage *mCableTestPage;
  22. public slots:
  23. };
  24. #endif // MAINWINDOW_H