blob: 44300c38337a21f276d8313b2f3d4fd9f4627cfa (
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
|
//
// Copyright (c) ZeroC, Inc. All rights reserved.
//
#ifndef ICEPY_PROPERTIES_H
#define ICEPY_PROPERTIES_H
#include <Config.h>
#include <Ice/PropertiesF.h>
namespace IcePy
{
extern PyTypeObject PropertiesType;
bool initProperties(PyObject*);
PyObject* createProperties(const Ice::PropertiesPtr&);
Ice::PropertiesPtr getProperties(PyObject*);
}
extern "C" PyObject* IcePy_createProperties(PyObject*, PyObject*);
#endif
|