Added name, country and city properties to AgChart

This commit is contained in:
2013-09-17 22:18:24 +02:00
parent 142f3b2374
commit a023606320
2 changed files with 148 additions and 0 deletions

View File

@@ -32,6 +32,13 @@ AgChart *ag_chart_new_full(GsweTimestamp *timestamp, gdouble longitude, gdouble
void ag_chart_load_from_file(const gchar *path, GError **err);
void ag_chart_save_to_file(const gchar *path, GError **err);
void ag_chart_set_name(AgChart *chart, const gchar *name);
gchar *ag_chart_get_name(AgChart *chart);
void ag_chart_set_country(AgChart *chart, const gchar *country);
gchar *ag_chart_get_country(AgChart *chart);
void ag_chart_set_city(AgChart *chart, const gchar *city);
gchar *ag_chart_get_city(AgChart *chart);
G_END_DECLS
#endif /* __AG_CHART_H__ */