23 lines
353 B
C
23 lines
353 B
C
|
|
#ifndef P601_TRANSPORTPAGE_H
|
||
|
|
#define P601_TRANSPORTPAGE_H
|
||
|
|
|
||
|
|
#include <QWidget>
|
||
|
|
|
||
|
|
namespace Ui {
|
||
|
|
class P601_TransportPage;
|
||
|
|
}
|
||
|
|
|
||
|
|
class P601_TransportPage : public QWidget
|
||
|
|
{
|
||
|
|
Q_OBJECT
|
||
|
|
|
||
|
|
public:
|
||
|
|
explicit P601_TransportPage(QWidget *parent = nullptr);
|
||
|
|
~P601_TransportPage();
|
||
|
|
|
||
|
|
private:
|
||
|
|
Ui::P601_TransportPage *ui;
|
||
|
|
};
|
||
|
|
|
||
|
|
#endif // P601_TRANSPORTPAGE_H
|