diff options
Diffstat (limited to 'cpp/src/Ice/PropertiesI.h')
-rw-r--r-- | cpp/src/Ice/PropertiesI.h | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/cpp/src/Ice/PropertiesI.h b/cpp/src/Ice/PropertiesI.h index 0a8a5622daa..ce94d4dc25f 100644 --- a/cpp/src/Ice/PropertiesI.h +++ b/cpp/src/Ice/PropertiesI.h @@ -12,6 +12,7 @@ #include <IceUtil/Mutex.h> #include <Ice/Properties.h> +#include <Ice/StringConverter.h> namespace Ice { @@ -33,20 +34,21 @@ public: virtual PropertiesPtr clone(); private: - PropertiesI(); - PropertiesI(StringSeq&, const PropertiesPtr&); + PropertiesI(const StringConverterPtr&); + PropertiesI(StringSeq&, const PropertiesPtr&, const StringConverterPtr&); PropertiesI(const PropertiesI*); - friend ICE_API PropertiesPtr createProperties(); - friend ICE_API PropertiesPtr createProperties(StringSeq&, const PropertiesPtr&); - friend ICE_API PropertiesPtr createProperties(int&, char*[], const PropertiesPtr&); + friend ICE_API PropertiesPtr createProperties(const StringConverterPtr&); + friend ICE_API PropertiesPtr createProperties(StringSeq&, const PropertiesPtr&, const StringConverterPtr&); + friend ICE_API PropertiesPtr createProperties(int&, char*[], const PropertiesPtr&, const StringConverterPtr&); - void parseLine(const std::string&); + void parseLine(const std::string&, const StringConverterPtr&); void loadConfig(); std::map<std::string, std::string> _properties; + const StringConverterPtr _converter; }; } |