123456789101112131415161718192021222324252627282930313233 |
- #ifndef DIALOGPARKINGFROMPOINT_H
- #define DIALOGPARKINGFROMPOINT_H
- #include <QDialog>
- #include <OpenDrive/OpenDrive.h>
- namespace Ui {
- class DialogParkingFromPoint;
- }
- class DialogParkingFromPoint : public QDialog
- {
- Q_OBJECT
- public:
- explicit DialogParkingFromPoint(Road * pRoad,double flon = 117.0,double flat = 39.0,QWidget *parent = nullptr);
- ~DialogParkingFromPoint();
- private slots:
- void on_pushButton_addparkingspace_clicked();
- private:
- Ui::DialogParkingFromPoint *ui;
- Road * mpRoad = NULL;
- double mLon0;
- double mLat0;
- };
- #endif // DIALOGPARKINGFROMPOINT_H
|