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/Client.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/Client.cpp')
-rw-r--r-- | cppe/test/IceE/custom/Client.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/cppe/test/IceE/custom/Client.cpp b/cppe/test/IceE/custom/Client.cpp index c80c581c5c4..2f90fa23ee4 100644 --- a/cppe/test/IceE/custom/Client.cpp +++ b/cppe/test/IceE/custom/Client.cpp @@ -11,6 +11,7 @@ #include <TestCommon.h> #include <TestApplication.h> #include <Test.h> +#include <StringConverterI.h> using namespace std; @@ -28,6 +29,8 @@ public: { Ice::InitializationData initData; initData.properties = Ice::createProperties(); + initData.stringConverter = new Test::StringConverterI(); + initData.wstringConverter = new Test::WstringConverterI(); loadConfig(initData.properties); initData.logger = getLogger(); |