CableTestBench/Sources/MainWindow.h
2019-04-15 14:17:15 -04:00

33 lines
603 B
C++

#ifndef MAINWINDOW_H
#define MAINWINDOW_H
#include <QMainWindow>
#include <QPushButton>
#include <QGridLayout>
#include <QLabel>
#include <QTextEdit>
#include "MainPage.h"
#include "VisualInspectionPage.h"
#include "CableTestPage.h"
class CCableTestBench;
class MainWindow : public QMainWindow
{
Q_OBJECT
public:
MainWindow(QWidget *parent = 0,CCableTestBench* ProgramHandle = 0);
~MainWindow();
CMainPage *mMainPage;
CCableTestBench *mProgramHandle;
CVisualInspectionPage *mVisualInspPage;
CCableTestPage *mCableTestPage;
public slots:
};
#endif // MAINWINDOW_H