1 //
2 // Copyright (c) ZeroC, Inc. All rights reserved.
3 //
4 
5 #ifndef ICEPY_IMPLICIT_CONTEXT_H
6 #define ICEPY_IMPLICIT_CONTEXT_H
7 
8 #include <Config.h>
9 #include <Ice/ImplicitContext.h>
10 
11 namespace IcePy
12 {
13 
14 extern PyTypeObject ImplicitContextType;
15 
16 bool initImplicitContext(PyObject*);
17 
18 PyObject* createImplicitContext(const Ice::ImplicitContextPtr&);
19 
20 }
21 
22 #endif
23