summaryrefslogtreecommitdiff
path: root/binding/python/common.h
blob: 5c1a270ca49201b8442dc4bb0b785c521785908a (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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
/**
 * Navit, a modular navigation system.
 * Copyright (C) 2005-2008 Navit Team
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License
 * version 2 as published by the Free Software Foundation.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the
 * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
 * Boston, MA  02110-1301, USA.
 */

#include <Python.h>
#include "debug.h"

#if defined(MS_WINDOWS) || defined(__CYGWIN__)
#define Obj_HEAD PyObject_HEAD_INIT(NULL);
#else
#define Obj_HEAD PyObject_HEAD_INIT(&PyType_Type)
#endif

struct navit;
struct map;

PyObject * python_object_from_attr(struct attr *attr);

PyObject * main_py(PyObject *self, PyObject *args);

PyObject * map_py_ref(struct map *map);

struct navigation;
PyObject * navigation_py(PyObject *self, PyObject *args);
PyObject * navigation_py_ref(struct navigation *navigation);

PyObject * navit_py(PyObject *self, PyObject *args);
PyObject * navit_py_ref(struct navit *navit);
extern PyTypeObject pcoord_Type;
PyObject * pcoord_py(PyObject *self, PyObject *args);
struct pcoord *pcoord_py_get(PyObject *self);

struct route;
PyObject * route_py(PyObject *self, PyObject *args);
PyObject * route_py_ref(struct route *route);

extern PyTypeObject attr_Type;
PyObject * attr_new_py(PyObject *self, PyObject *args);
PyObject * attr_new_py_ref(struct attr *attr);
struct attr * attr_py_get(PyObject *self);