summaryrefslogtreecommitdiff
path: root/python/modules/IcePy/EndpointInfo.h
blob: c7acfdf652c1b0cf2d0131f76f163e0cd7d1ee66 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
//
// Copyright (c) ZeroC, Inc. All rights reserved.
//

#ifndef ICEPY_ENDPOINT_INFO_H
#define ICEPY_ENDPOINT_INFO_H

#include <Config.h>
#include <Ice/Endpoint.h>

namespace IcePy
{

extern PyTypeObject EndpointInfoType;

bool initEndpointInfo(PyObject*);

PyObject* createEndpointInfo(const Ice::EndpointInfoPtr&);
Ice::EndpointInfoPtr getEndpointInfo(PyObject*);

}

#endif