changeset 70:dda89f1d48c6

According to IRC discuss, change the string map to map of string and multimap
author daedric <d43dr1c@gmail.com>
date Wed, 31 Mar 2010 17:00:43 +0200
parents c9ebb8ea24e2
children 7db18b322fba
files include/IConfig.hpp
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- 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<std::string, std::string>  ValueMap;
+            typedef std::map < std::string, std::multimap < std::string, std::string > > ValueMap;
 
             virtual ~IConfig(void) { }