From: mehdi Date: Fri, 8 Apr 2011 12:58:40 +0000 (+0200) Subject: callback to parse_properties_XML when parsing prop tag in XML X-Git-Tag: v3.6_beta2~59^2~11^2^2~1 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/2d6173e9a879e66d8467d65ec80887cf2e5c4e5f?ds=sidebyside callback to parse_properties_XML when parsing prop tag in XML --- diff --git a/src/include/surf/surf.h b/src/include/surf/surf.h index cef3ab7efd..5672742cb9 100644 --- a/src/include/surf/surf.h +++ b/src/include/surf/surf.h @@ -696,7 +696,9 @@ XBT_PUBLIC(void) surf_exit(void); /* Prototypes of the functions that handle the properties */ XBT_PUBLIC_DATA(xbt_dict_t) current_property_set; /* the prop set for the currently parsed element (also used in SIMIX) */ -XBT_PUBLIC_DATA(void) parse_properties(void); +XBT_PUBLIC_DATA(void) parse_properties(const char* prop_id, const char* prop_value); +XBT_PUBLIC_DATA(void) parse_properties_XML(void); +XBT_PUBLIC_DATA(void) parse_properties_lua(const char* prop_id, const char* prop_value); /* surf parse file related (public because called from a test suite) */ XBT_PUBLIC(void) parse_platform_file(const char *file);