Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
add the ability to set a default value after registration
[simgrid.git] / include / xbt / config.h
index eb3de33..43bf825 100644 (file)
@@ -109,6 +109,16 @@ XBT_PUBLIC(void) xbt_cfg_set_string(xbt_cfg_t cfg, const char *name,
 XBT_PUBLIC(void) xbt_cfg_set_peer(xbt_cfg_t cfg, const char *name,
                                   const char *peer, int port);
 
+/*
+  Set the default value of the cell \a name in \a cfg with the provided value.
+  If it was already set to something (possibly from the command line), do nothing.
+ */
+XBT_PUBLIC(void) xbt_cfg_setdefault_int(xbt_cfg_t cfg, const char *name, int val);
+XBT_PUBLIC(void) xbt_cfg_setdefault_double(xbt_cfg_t cfg, const char *name, double val);
+XBT_PUBLIC(void) xbt_cfg_setdefault_string(xbt_cfg_t cfg, const char *name, const char* val);
+XBT_PUBLIC(void) xbt_cfg_setdefault_peer(xbt_cfg_t cfg, const char *name, const char* host, int port);
+
+
 /*
  Remove the provided value from the cell @name in @cfg.
  */