Add empty-plugin-functions for tilt 75/89575/1
authorchanywa <cbible.kim@samsung.com>
Mon, 26 Sep 2016 05:22:47 +0000 (14:22 +0900)
committerchanywa <cbible.kim@samsung.com>
Mon, 26 Sep 2016 05:27:09 +0000 (14:27 +0900)
Change-Id: I53578b7d6868bacee776ddecf1a652b333440bda

src/plugin/empty_module.cpp

index 8c52ab4dc946a9d00f7182d565cbd68f3b6ab209..2d3367cdbcf165dfe02717dfc145222f52fefa21 100644 (file)
@@ -270,6 +270,21 @@ int maps_plugin_capture_snapshot_empty(maps_view_h view, void **data, int *width
        return 0;
 }
 
+int maps_plugin_set_tilt_angle(maps_view_h view, double tilt_angle)
+{
+       return 0;
+}
+
+int maps_plugin_get_min_tilt_angle(maps_view_h view, double *min_tilt_angle)
+{
+       return 0;
+}
+
+int maps_plugin_get_max_tilt_angle(maps_view_h view, double *max_tilt_angle)
+{
+       return 0;
+}
+
 /* Interface of a plugin with all empty functions */
 plugin::interface_s empty_interface = {
        /* Plugin dedicated functions */
@@ -321,6 +336,9 @@ plugin::interface_s empty_interface = {
        maps_plugin_get_max_zoom_level_empty,
        maps_plugin_get_center_empty,
        maps_plugin_capture_snapshot_empty,
+       maps_plugin_set_tilt_angle,
+       maps_plugin_get_min_tilt_angle,
+       maps_plugin_get_max_tilt_angle,
 };