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.
|
- #ifndef OPTIONSPAGE_H
- #define OPTIONSPAGE_H
-
- #include <QWidget>
- #include "TestBenchSettings.h"
-
-
- namespace Ui {
- class COptionsPage;
- }
-
- class CCableTestBench;
-
- class COptionsPage : public QWidget
- {
- Q_OBJECT
-
- public:
- explicit COptionsPage(QWidget *parent = 0);
- ~COptionsPage();
-
- CCableTestBench *mProgramHandle;
-
- int GetCurrentOptions(CTestBenchSettings *Settings);
- int SetCurrentOptions(CTestBenchSettings *Settings);
-
- private:
- Ui::COptionsPage *ui;
-
- public slots:
-
- void OptionChanged();
-
- signals:
- void CurrentOptionsChanged();
-
-
- };
-
- #endif // OPTIONSPAGE_H
|