diff options
author | Dwayne Boone <dwayne@zeroc.com> | 2006-05-01 18:31:55 +0000 |
---|---|---|
committer | Dwayne Boone <dwayne@zeroc.com> | 2006-05-01 18:31:55 +0000 |
commit | 75ae8f6e9822d23c83c5e1efec31a82d27a0047b (patch) | |
tree | 59e538a9a7e601768574e3179390a73fbb0b933b /cppe/test/IceE/custom/Collocated.cpp | |
parent | removing redundant 'Client' portion from filter property names (diff) | |
download | ice-75ae8f6e9822d23c83c5e1efec31a82d27a0047b.tar.bz2 ice-75ae8f6e9822d23c83c5e1efec31a82d27a0047b.tar.xz ice-75ae8f6e9822d23c83c5e1efec31a82d27a0047b.zip |
Added ability to configure string converters
Diffstat (limited to 'cppe/test/IceE/custom/Collocated.cpp')
-rw-r--r-- | cppe/test/IceE/custom/Collocated.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/cppe/test/IceE/custom/Collocated.cpp b/cppe/test/IceE/custom/Collocated.cpp index 7b440949847..33c128799e1 100644 --- a/cppe/test/IceE/custom/Collocated.cpp +++ b/cppe/test/IceE/custom/Collocated.cpp @@ -12,6 +12,7 @@ #include <TestApplication.h> #include <TestI.h> #include <WstringI.h> +#include <StringConverterI.h> using namespace std; @@ -29,6 +30,8 @@ public: { Ice::InitializationData initData; initData.properties = Ice::createProperties(); + initData.stringConverter = new Test::StringConverterI(); + initData.wstringConverter = new Test::WstringConverterI(); initData.properties->setProperty("TestAdapter.Endpoints", "default -p 12010 -t 10000"); //initData.properties->setProperty("Ice.Trace.Network", "5"); |