summaryrefslogtreecommitdiff
path: root/py/modules/IcePy/ImplicitContext.h
diff options
context:
space:
mode:
authorBernard Normier <bernard@zeroc.com>2006-10-25 20:59:01 +0000
committerBernard Normier <bernard@zeroc.com>2006-10-25 20:59:01 +0000
commitb51bbbbdb61ff4e71cd99e2b626e00f701ecb880 (patch)
tree62de660937598471b96644e9999b0b3e01173b69 /py/modules/IcePy/ImplicitContext.h
parentupdate for bug 1500 (diff)
downloadice-b51bbbbdb61ff4e71cd99e2b626e00f701ecb880.tar.bz2
ice-b51bbbbdb61ff4e71cd99e2b626e00f701ecb880.tar.xz
ice-b51bbbbdb61ff4e71cd99e2b626e00f701ecb880.zip
Added implicit context implementation
Diffstat (limited to 'py/modules/IcePy/ImplicitContext.h')
-rw-r--r--py/modules/IcePy/ImplicitContext.h27
1 files changed, 27 insertions, 0 deletions
diff --git a/py/modules/IcePy/ImplicitContext.h b/py/modules/IcePy/ImplicitContext.h
new file mode 100644
index 00000000000..12363473128
--- /dev/null
+++ b/py/modules/IcePy/ImplicitContext.h
@@ -0,0 +1,27 @@
+// **********************************************************************
+//
+// Copyright (c) 2003-2006 ZeroC, Inc. All rights reserved.
+//
+// This copy of Ice is licensed to you under the terms described in the
+// ICE_LICENSE file included in this distribution.
+//
+// **********************************************************************
+
+#ifndef ICEPY_IMPLICIT_CONTEXT_H
+#define ICEPY_IMPLICIT_CONTEXT_H
+
+#include <Config.h>
+#include <Ice/ImplicitContext.h>
+
+namespace IcePy
+{
+
+extern PyTypeObject ImplicitContextType;
+
+bool initImplicitContext(PyObject*);
+
+PyObject* createImplicitContext(const Ice::ImplicitContextPtr&);
+
+}
+
+#endif