From 411c65e755eb6dd2e1412d2edb0f811ebd5ce73d Mon Sep 17 00:00:00 2001 From: rubidium Date: Mon, 25 Aug 2008 06:35:28 +0000 Subject: (svn r14164) -Codechange: simplify and unify the addition of ini items with value when not loading an ini file. -Fix: wrong insertion management causing leaks. --- src/ini_type.h | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) (limited to 'src/ini_type.h') diff --git a/src/ini_type.h b/src/ini_type.h index 4c18862ea..060af5d66 100644 --- a/src/ini_type.h +++ b/src/ini_type.h @@ -18,8 +18,30 @@ struct IniItem { char *value; ///< The value of this item char *comment; ///< The comment associated with this item + /** + * Construct a new in-memory item of an Ini file. + * @param parent the group we belong to + * @param name the name of the item + * @param len the length of the name of the item + */ IniItem(struct IniGroup *parent, const char *name, size_t len = 0); + + /** + * Construct a new in-memory item of an Ini file. + * @param parent the group we belong to + * @param name the name of the item + * @param value the value to immediatelly assign + */ + IniItem(IniGroup *parent, const char *name, const char *value); + + /** Free everything we loaded. */ ~IniItem(); + + /** + * Replace the current value with another value. + * @param value the value to replace with. + */ + void SetValue(const char *value); }; /** A group within an ini file. */ -- cgit v1.2.3-54-g00ecf