diff options
Diffstat (limited to 'py/modules/IcePy/ImplicitContext.h')
-rw-r--r-- | py/modules/IcePy/ImplicitContext.h | 27 |
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 |