summaryrefslogtreecommitdiff
path: root/gnuradio-runtime/include/IcePy_Communicator.h
diff options
context:
space:
mode:
authorJohnathan Corgan <johnathan@corganlabs.com>2013-03-27 20:41:40 -0700
committerJohnathan Corgan <johnathan@corganlabs.com>2013-03-27 20:41:40 -0700
commit2caaabf8e1dd771174fd42e51c8c8090864638e6 (patch)
treee58fe2bc53120acfd11aa6687fe5fa0aaa58ca71 /gnuradio-runtime/include/IcePy_Communicator.h
parent40ab0030dbe821c9ed475a0b73898040f4af581c (diff)
parentd7cde125dc3661a62e1013a4a017f0f1efa46e6e (diff)
Merge branch 'runtime-3.7' into next
Diffstat (limited to 'gnuradio-runtime/include/IcePy_Communicator.h')
-rw-r--r--gnuradio-runtime/include/IcePy_Communicator.h35
1 files changed, 35 insertions, 0 deletions
diff --git a/gnuradio-runtime/include/IcePy_Communicator.h b/gnuradio-runtime/include/IcePy_Communicator.h
new file mode 100644
index 0000000000..aae4378229
--- /dev/null
+++ b/gnuradio-runtime/include/IcePy_Communicator.h
@@ -0,0 +1,35 @@
+// **********************************************************************
+//
+// Copyright (c) 2003-2011 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_COMMUNICATOR_H
+#define ICEPY_COMMUNICATOR_H
+
+#include <Ice/CommunicatorF.h>
+#include <gr_runtime_api.h>
+
+namespace IcePy
+{
+
+extern PyTypeObject CommunicatorType;
+
+GR_RUNTIME_API bool initCommunicator(PyObject*);
+
+GR_RUNTIME_API Ice::CommunicatorPtr getCommunicator(PyObject*);
+
+GR_RUNTIME_API PyObject* createCommunicator(const Ice::CommunicatorPtr&);
+GR_RUNTIME_API PyObject* getCommunicatorWrapper(const Ice::CommunicatorPtr&);
+
+}
+
+extern "C" PyObject* IcePy_initialize(PyObject*, PyObject*);
+extern "C" PyObject* IcePy_initializeWithProperties(PyObject*, PyObject*);
+extern "C" PyObject* IcePy_initializeWithLogger(PyObject*, PyObject*);
+extern "C" PyObject* IcePy_initializeWithPropertiesAndLogger(PyObject*, PyObject*);
+
+#endif