// // Copyright (c) ZeroC, Inc. All rights reserved. // #ifndef ICEPY_IMPLICIT_CONTEXT_H #define ICEPY_IMPLICIT_CONTEXT_H #include #include namespace IcePy { extern PyTypeObject ImplicitContextType; bool initImplicitContext(PyObject*); PyObject* createImplicitContext(const Ice::ImplicitContextPtr&); } #endif