X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/93b7899156ac9fee75c4a6a8b65b92b265d61d4f..3713b932e060daf13fa9d7cac8c46db82a167d92:/src/surf/PropertyHolder.cpp?ds=sidebyside diff --git a/src/surf/PropertyHolder.cpp b/src/surf/PropertyHolder.cpp index cdd87bee05..4458b2d8db 100644 --- a/src/surf/PropertyHolder.cpp +++ b/src/surf/PropertyHolder.cpp @@ -15,28 +15,28 @@ PropertyHolder::PropertyHolder(xbt_dict_t props) } PropertyHolder::~PropertyHolder() { - xbt_dict_free(&p_properties); + xbt_dict_free(&p_properties); } /** @brief Return the property associated to the provided key (or NULL if not existing) */ const char *PropertyHolder::getProperty(const char*key) { - if (p_properties == NULL) - return NULL; - return (const char*) xbt_dict_get_or_null(p_properties,key); + if (p_properties == NULL) + return NULL; + return (const char*) xbt_dict_get_or_null(p_properties,key); } /** @brief Change the value of a given key in the property set */ void PropertyHolder::setProperty(const char*key, const char*value) { - if (!p_properties) - p_properties = xbt_dict_new(); - xbt_dict_set(p_properties, key, xbt_strdup(value), &xbt_free_f); + if (!p_properties) + p_properties = xbt_dict_new(); + xbt_dict_set(p_properties, key, xbt_strdup(value), &xbt_free_f); } /** @brief Return the whole set of properties. Don't mess with it, dude! */ xbt_dict_t PropertyHolder::getProperties() { - if (!p_properties) - p_properties = xbt_dict_new(); - return p_properties; + if (!p_properties) + p_properties = xbt_dict_new(); + return p_properties; } } /* namespace surf */