dialogparkingfrompoint.h 602 B

123456789101112131415161718192021222324252627282930313233
  1. #ifndef DIALOGPARKINGFROMPOINT_H
  2. #define DIALOGPARKINGFROMPOINT_H
  3. #include <QDialog>
  4. #include <OpenDrive/OpenDrive.h>
  5. namespace Ui {
  6. class DialogParkingFromPoint;
  7. }
  8. class DialogParkingFromPoint : public QDialog
  9. {
  10. Q_OBJECT
  11. public:
  12. explicit DialogParkingFromPoint(Road * pRoad,double flon = 117.0,double flat = 39.0,QWidget *parent = nullptr);
  13. ~DialogParkingFromPoint();
  14. private slots:
  15. void on_pushButton_addparkingspace_clicked();
  16. private:
  17. Ui::DialogParkingFromPoint *ui;
  18. Road * mpRoad = NULL;
  19. double mLon0;
  20. double mLat0;
  21. };
  22. #endif // DIALOGPARKINGFROMPOINT_H