diff options
Diffstat (limited to 'navit/layout.h')
-rw-r--r-- | navit/layout.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/navit/layout.h b/navit/layout.h index 41fcbbf79..e8ff4c0a8 100644 --- a/navit/layout.h +++ b/navit/layout.h @@ -23,6 +23,11 @@ #include "item.h" #include "color.h" +#ifdef __cplusplus +extern "C" { +#endif + + struct element { enum { element_point, element_polyline, element_polygon, element_circle, element_text, element_icon, element_image, element_arrows } type; struct color color; @@ -124,4 +129,9 @@ struct image *image_new(struct attr *parent, struct attr **attrs); struct arrows *arrows_new(struct attr *parent, struct attr **attrs); int element_add_attr(struct element *e, struct attr *attr); /* end of prototypes */ + +#ifdef __cplusplus +} +#endif + #endif |