CableTestBench/Sources/MainWindow.h
2019-05-02 16:10:58 -04:00

38 lines
705 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"
#include "VisualInspectionResult.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;
int ShowInspectVisuellePage();
int ShowCableTestPage();
public slots:
};
#endif // MAINWINDOW_H