diff options
author | Mark Spruiell <mes@zeroc.com> | 2012-12-26 15:16:24 -0800 |
---|---|---|
committer | Mark Spruiell <mes@zeroc.com> | 2012-12-26 15:16:24 -0800 |
commit | 899c375da6787c33073997eb3722342a0cc971f3 (patch) | |
tree | 9f369f06baa9634c88f6c646e9f399ab44d49657 /py/modules/IcePy/Communicator.cpp | |
parent | OS X installer updates (diff) | |
download | ice-899c375da6787c33073997eb3722342a0cc971f3.tar.bz2 ice-899c375da6787c33073997eb3722342a0cc971f3.tar.xz ice-899c375da6787c33073997eb3722342a0cc971f3.zip |
compact ID support for scripting languages
Diffstat (limited to 'py/modules/IcePy/Communicator.cpp')
-rw-r--r-- | py/modules/IcePy/Communicator.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/py/modules/IcePy/Communicator.cpp b/py/modules/IcePy/Communicator.cpp index 221b45704b0..f4698c87b05 100644 --- a/py/modules/IcePy/Communicator.cpp +++ b/py/modules/IcePy/Communicator.cpp @@ -21,6 +21,7 @@ #include <PropertiesAdmin.h> #include <Proxy.h> #include <Thread.h> +#include <Types.h> #include <Util.h> #include <Ice/Initialize.h> #include <Ice/CommunicatorAsync.h> @@ -204,6 +205,8 @@ communicatorInit(CommunicatorObject* self, PyObject* args, PyObject* /*kwds*/) } argv[argc] = 0; + data.compactIdResolver = new IdResolver; + Ice::CommunicatorPtr communicator; try { |