summaryrefslogtreecommitdiff
path: root/cppe/src/IceE/Initialize.cpp
diff options
context:
space:
mode:
authorDwayne Boone <dwayne@zeroc.com>2006-06-14 16:00:59 +0000
committerDwayne Boone <dwayne@zeroc.com>2006-06-14 16:00:59 +0000
commit1f01cdb052af4e7b7192f39bd6e8eb4e39ca0381 (patch)
treeff018c6defd3faa67d1599bfca5c12e9eded1fb9 /cppe/src/IceE/Initialize.cpp
parent- IceSSL assembly is now build into the bin directory. (diff)
downloadice-1f01cdb052af4e7b7192f39bd6e8eb4e39ca0381.tar.bz2
ice-1f01cdb052af4e7b7192f39bd6e8eb4e39ca0381.tar.xz
ice-1f01cdb052af4e7b7192f39bd6e8eb4e39ca0381.zip
bug 923 - run string converter on properties red frmo file
Diffstat (limited to 'cppe/src/IceE/Initialize.cpp')
-rw-r--r--cppe/src/IceE/Initialize.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/cppe/src/IceE/Initialize.cpp b/cppe/src/IceE/Initialize.cpp
index 0948d00a2b9..6bf6fe9e678 100644
--- a/cppe/src/IceE/Initialize.cpp
+++ b/cppe/src/IceE/Initialize.cpp
@@ -61,22 +61,22 @@ Ice::stringSeqToArgs(const StringSeq& args, int& argc, char* argv[])
}
PropertiesPtr
-Ice::createProperties()
+Ice::createProperties(const StringConverterPtr& converter)
{
- return new Properties();
+ return new Properties(converter);
}
PropertiesPtr
-Ice::createProperties(StringSeq& args, const PropertiesPtr& defaults)
+Ice::createProperties(StringSeq& args, const PropertiesPtr& defaults, const StringConverterPtr& converter)
{
- return new Properties(args, defaults);
+ return new Properties(args, defaults, converter);
}
PropertiesPtr
-Ice::createProperties(int& argc, char* argv[], const PropertiesPtr& defaults)
+Ice::createProperties(int& argc, char* argv[], const PropertiesPtr& defaults, const StringConverterPtr& converter)
{
StringSeq args = argsToStringSeq(argc, argv);
- PropertiesPtr properties = createProperties(args, defaults);
+ PropertiesPtr properties = createProperties(args, defaults, converter);
stringSeqToArgs(args, argc, argv);
return properties;
}