summaryrefslogtreecommitdiff
path: root/i/marvin/src/config/config_data.hh
diff options
context:
space:
mode:
Diffstat (limited to 'i/marvin/src/config/config_data.hh')
-rw-r--r--i/marvin/src/config/config_data.hh9
1 files changed, 0 insertions, 9 deletions
diff --git a/i/marvin/src/config/config_data.hh b/i/marvin/src/config/config_data.hh
index 8c8bf1f..51caabd 100644
--- a/i/marvin/src/config/config_data.hh
+++ b/i/marvin/src/config/config_data.hh
@@ -58,18 +58,9 @@ class ConfigData
/// Ajoute une valeur de configuration. VAL prend l'ancienne valeur ou un
/// any vide.
void add (const std::string &id, any &val);
- /// Ajoute une valeur de configuration, fonction générique. Attention,
- /// cette fonction est plus couteuse car elle fait une copie de
- /// la valeur.
- template<typename T>
- void add (const std::string &id, const T &val);
private:
/// Initialise (lit la ligne de commande et les fichiers de config.
void init (int &argc, char **&argv, const std::string &file);
- /// Lance le parseur sur un fichier.
- void parseFile (const std::string &file);
- /// Lance le parseur sur une chaîne.
- void parseString (const std::string &s);
};
#include "config_data.tcc"