blob: 2dd0cc7bbab1d36fc977180ad982ce83801bac72 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
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 <gnuradio/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
|