summaryrefslogtreecommitdiff
path: root/navit/xmlconfig.h
diff options
context:
space:
mode:
authormvglasow <michael -at- vonglasow.com>2017-11-27 23:17:09 +0100
committermvglasow <michael -at- vonglasow.com>2017-11-27 23:17:09 +0100
commita9fa1310cc95e61ed2ebfee4564d432fb64ee1c1 (patch)
tree99b699dc0e97bc5ca24c60c034ef2775a5178ccf /navit/xmlconfig.h
parent3151fa2e2ae52dd7c9159971f4594cf18a5dbff0 (diff)
downloadnavit-a9fa1310cc95e61ed2ebfee4564d432fb64ee1c1.tar.gz
Add:traffic:Introduce traffic module to Navit core, still a skeleton
Signed-off-by: mvglasow <michael -at- vonglasow.com>
Diffstat (limited to 'navit/xmlconfig.h')
-rw-r--r--navit/xmlconfig.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/navit/xmlconfig.h b/navit/xmlconfig.h
index 483f215d0..f146bee36 100644
--- a/navit/xmlconfig.h
+++ b/navit/xmlconfig.h
@@ -112,7 +112,7 @@ struct object_func {
* default behavior, can be NULL for some object types */
};
-extern struct object_func map_func, mapset_func, navit_func, osd_func, tracking_func, vehicle_func, maps_func, layout_func, roadprofile_func, vehicleprofile_func, layer_func, config_func, profile_option_func, script_func, log_func, speech_func, navigation_func, route_func;
+extern struct object_func map_func, mapset_func, navit_func, osd_func, tracking_func, vehicle_func, maps_func, layout_func, roadprofile_func, vehicleprofile_func, layer_func, config_func, profile_option_func, script_func, log_func, speech_func, navigation_func, route_func, traffic_func;
#define HAS_OBJECT_FUNC(x) ((x) == attr_map || (x) == attr_mapset || (x) == attr_navit || (x) == attr_osd || (x) == attr_trackingo || (x) == attr_vehicle || (x) == attr_maps || (x) == attr_layout || (x) == attr_roadprofile || (x) == attr_vehicleprofile || (x) == attr_layer || (x) == attr_config || (x) == attr_profile_option || (x) == attr_script || (x) == attr_log || (x) == attr_speech || (x) == attr_navigation || (x) == attr_route)