FGx  1
completedpage.h
1 #ifndef COMPLETEDPAGE_H
2 #define COMPLETEDPAGE_H
3 
4 #include <QWizardPage>
5 
6 
7 #include "xobjects/mainobject.h"
8 
9 
10 class CompletedPage : public QWizardPage
11 {
12 Q_OBJECT
13 public:
14  explicit CompletedPage(MainObject *mob, QWidget *parent = 0);
15 
16  MainObject *mainObject;
17 signals:
18 
19 public slots:
20 
21 };
22 
23 #endif // COMPLETEDPAGE_H
MainObject
The MainObject is an extended QObject, and the main "controller" for FGx.
Definition: mainobject.h:61
CompletedPage
Definition: completedpage.h:10