From 8687e5d0cee920fafc5579c6963056b70aa8ca33 Mon Sep 17 00:00:00 2001 From: Alexander Klein Date: Wed, 4 Jan 2023 02:34:06 +0100 Subject: [PATCH] added get creationTime --- lib/Navigation/route.h | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/Navigation/route.h b/lib/Navigation/route.h index 0968502..7aa7f33 100644 --- a/lib/Navigation/route.h +++ b/lib/Navigation/route.h @@ -84,6 +84,7 @@ class Point{ int16_t courseTo(const Coordinates& point) const; int16_t courseTo(const Point& point) const; + uint32_t getCreationTime() const { return this->creationTime; } double getLongitude() const { return this->coordinates.lon; } double getLatitude() const { return this->coordinates.lat; } Coordinates getCoordinates() const { return this->coordinates; }