Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
rename the fields of the PropertyHolder
authorMartin Quinson <martin.quinson@loria.fr>
Fri, 1 Apr 2016 17:19:11 +0000 (19:19 +0200)
committerMartin Quinson <martin.quinson@loria.fr>
Fri, 1 Apr 2016 17:19:11 +0000 (19:19 +0200)
src/surf/PropertyHolder.cpp
src/surf/PropertyHolder.hpp

index 4458b2d..97331c6 100644 (file)
@@ -10,33 +10,33 @@ namespace simgrid {
 namespace surf {
 
 PropertyHolder::PropertyHolder(xbt_dict_t props)
-: p_properties(props)
+: properties_(props)
 {
 }
 
 PropertyHolder::~PropertyHolder() {
-  xbt_dict_free(&p_properties);
+  xbt_dict_free(&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)
+  if (properties_ == NULL)
     return NULL;
-  return (const char*) xbt_dict_get_or_null(p_properties,key);
+  return (const char*) xbt_dict_get_or_null(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 (!properties_)
+    properties_ = xbt_dict_new();
+  xbt_dict_set(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 (!properties_)
+    properties_ = xbt_dict_new();
+  return properties_;
 }
 
 } /* namespace surf */
index 0684173..3d2cdf1 100644 (file)
@@ -28,7 +28,7 @@ public:
    */
   xbt_dict_t getProperties();
 private:
-  xbt_dict_t p_properties = NULL;
+  xbt_dict_t properties_ = NULL;
 };
 
 } /* namespace surf */