extern void Stopwatch_Reset(int aIndex);
HERE_MAPS_END_NAMESPACE
+#undef VERSION
+#define VERSION(a, b, c) (((a) << 16) + ((b) << 8) + (c))
+
#endif // HEREMAPS_GLOBAL_H
#define GEOROUTEQUERY_H
#include <map>
+#include <time.h>
#include "common/HereMaps_global.h"
#include "common/BaseQuery.h"
* @return An integer indicating the realtime traffic status.
*/
size_t GetRealtimeTraffic(void) const;
+
+ /**
+ * This method sets a value that indicates the departure time.
+ *
+ * @param time An value indicating the departure time.
+ */
+ void SetDepartureTime(time_t time);
+
+ /**
+ * This method retrieves a value that indicates the departure time.
+ *
+ * @return An value indicating the departure time.
+ */
+ time_t GetDepartureTime(void) const;
+
+ /**
+ * This method sets a value that indicates the arrival time.
+ *
+ * @param time An intevalueger indicating the arrival time.
+ */
+ void SetArrivalTime(time_t time);
+
+ /**
+ * This method retrieves a value that indicates the arrival time.
+ *
+ * @return An value indicating the arrival time.
+ */
+ time_t GetArrivalTime(void) const;
#endif
/**
-libheremaps-engine.so.1.0.6_14
\ No newline at end of file
+libheremaps-engine.so.1.0.6_16
\ No newline at end of file
-libheremaps-engine.so.1.0.6_14
\ No newline at end of file
+libheremaps-engine.so.1.0.6_16
\ No newline at end of file
-libheremaps-engine.so.1.0.6_14
\ No newline at end of file
+libheremaps-engine.so.1.0.6_16
\ No newline at end of file
-libheremaps-engine.so.1.0.6_14
\ No newline at end of file
+libheremaps-engine.so.1.0.6_16
\ No newline at end of file
+[Version] maps-plugin-here_0.3.3
+[Date] 28 July 2016
+[Title] Support to set departure time for routing
+[Developer] Seechan Kim <cbible.kim@samsung.com>
+
[Version] maps-plugin-here_0.3.2
[Date] 07 June 2016
[Title] modified internal APIs for maps-service
Name: maps-plugin-here
Summary: Tizen HERE Maps Plug-in Library
-Version: 0.3.2
+Version: 0.3.3
Release: 1
Group: Location/Libraries
License: Apache-2.0 and HERE
g_free(szRealtimeTraffic);
}
+ time_t timeVal = 0;
+ if (maps_preference_get_route_departure_time(hPref, &timeVal) == MAPS_ERROR_NONE)
+ m_pQuery->SetDepartureTime(timeVal);
+
return HERE_ERROR_NONE;
}