diff options
author | Bernard Normier <bernard@zeroc.com> | 2006-10-25 20:59:01 +0000 |
---|---|---|
committer | Bernard Normier <bernard@zeroc.com> | 2006-10-25 20:59:01 +0000 |
commit | b51bbbbdb61ff4e71cd99e2b626e00f701ecb880 (patch) | |
tree | 62de660937598471b96644e9999b0b3e01173b69 /py/modules/IcePy/Init.cpp | |
parent | update for bug 1500 (diff) | |
download | ice-b51bbbbdb61ff4e71cd99e2b626e00f701ecb880.tar.bz2 ice-b51bbbbdb61ff4e71cd99e2b626e00f701ecb880.tar.xz ice-b51bbbbdb61ff4e71cd99e2b626e00f701ecb880.zip |
Added implicit context implementation
Diffstat (limited to 'py/modules/IcePy/Init.cpp')
-rw-r--r-- | py/modules/IcePy/Init.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/py/modules/IcePy/Init.cpp b/py/modules/IcePy/Init.cpp index 58eb87d84c4..d70b9d85f02 100644 --- a/py/modules/IcePy/Init.cpp +++ b/py/modules/IcePy/Init.cpp @@ -13,6 +13,7 @@ #include <Communicator.h> #include <Connection.h> #include <Current.h> +#include <ImplicitContext.h> #include <Logger.h> #include <ObjectAdapter.h> #include <Operation.h> @@ -123,4 +124,8 @@ initIcePy(void) { return; } + if(!initImplicitContext(module)) + { + return; + } } |