# HG changeset patch # User daedric # Date 1270047643 -7200 # Node ID dda89f1d48c63ee3a17e8fea9a05839da0e4b472 # Parent c9ebb8ea24e2ccbcdc6e47475c1d518b8abdddef According to IRC discuss, change the string map to map of string and multimap diff -r c9ebb8ea24e2 -r dda89f1d48c6 include/IConfig.hpp --- a/include/IConfig.hpp Wed Mar 31 00:00:46 2010 +0200 +++ b/include/IConfig.hpp Wed Mar 31 17:00:43 2010 +0200 @@ -15,7 +15,7 @@ class IConfig { public: - typedef std::map ValueMap; + typedef std::map < std::string, std::multimap < std::string, std::string > > ValueMap; virtual ~IConfig(void) { }