summaryrefslogtreecommitdiff
path: root/py/modules/IcePy/ConnectionInfo.h
diff options
context:
space:
mode:
Diffstat (limited to 'py/modules/IcePy/ConnectionInfo.h')
-rw-r--r--py/modules/IcePy/ConnectionInfo.h28
1 files changed, 28 insertions, 0 deletions
diff --git a/py/modules/IcePy/ConnectionInfo.h b/py/modules/IcePy/ConnectionInfo.h
new file mode 100644
index 00000000000..db30b23345d
--- /dev/null
+++ b/py/modules/IcePy/ConnectionInfo.h
@@ -0,0 +1,28 @@
+// **********************************************************************
+//
+// Copyright (c) 2003-2009 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_CONNECTION_INFO_H
+#define ICEPY_CONNECTION_INFO_H
+
+#include <Config.h>
+#include <Ice/Connection.h>
+
+namespace IcePy
+{
+
+extern PyTypeObject ConnectionInfoType;
+
+bool initConnectionInfo(PyObject*);
+
+PyObject* createConnectionInfo(const Ice::ConnectionInfoPtr&);
+Ice::ConnectionInfoPtr getConnectionInfo(PyObject*);
+
+}
+
+#endif