/[zanavi_public1]/navit/navit/track.h
ZANavi

Contents of /navit/navit/track.h

Parent Directory Parent Directory | Revision Log Revision Log


Revision 40 - (hide annotations) (download)
Wed Mar 4 14:00:54 2015 UTC (9 years ago) by zoff99
File MIME type: text/plain
File size: 2277 byte(s)
new market version, lots of fixes
1 zoff99 2 /**
2     * Navit, a modular navigation system.
3     * Copyright (C) 2005-2008 Navit Team
4     *
5     * This program is free software; you can redistribute it and/or
6     * modify it under the terms of the GNU Library General Public License
7     * version 2 as published by the Free Software Foundation.
8     *
9     * This program is distributed in the hope that it will be useful,
10     * but WITHOUT ANY WARRANTY; without even the implied warranty of
11     * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12     * GNU Library General Public License for more details.
13     *
14     * You should have received a copy of the GNU Library General Public
15     * License along with this program; if not, write to the
16     * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
17     * Boston, MA 02110-1301, USA.
18     */
19    
20     #ifndef NAVIT_TRACK_H
21     #define NAVIT_TRACK_H
22     #include <time.h>
23     #ifdef __cplusplus
24     extern "C" {
25     #endif
26     /* prototypes */
27     enum attr_type;
28     enum projection;
29     struct attr;
30     struct attr_iter;
31     struct coord;
32     struct item;
33     struct map;
34     struct mapset;
35     struct route;
36     struct street_data;
37     struct tracking;
38     struct vehicle;
39     struct vehicleprofile;
40     int tracking_get_angle(struct tracking *tr);
41     struct coord *tracking_get_pos(struct tracking *tr);
42     int tracking_get_street_direction(struct tracking *tr);
43 zoff99 40 double tracking_get_direction(struct tracking *tr);
44 zoff99 2 int tracking_get_segment_pos(struct tracking *tr);
45     struct street_data *tracking_get_street_data(struct tracking *tr);
46     int tracking_get_attr(struct tracking *_this, enum attr_type type, struct attr *attr, struct attr_iter *attr_iter);
47     struct item *tracking_get_current_item(struct tracking *_this);
48     int *tracking_get_current_flags(struct tracking *_this);
49     void tracking_flush(struct tracking *tr);
50     void tracking_update(struct tracking *tr, struct vehicle *v, struct vehicleprofile *vehicleprofile, enum projection pro);
51     int tracking_set_attr(struct tracking *tr, struct attr *attr);
52     struct tracking *tracking_new(struct attr *parent, struct attr **attrs);
53     void tracking_set_mapset(struct tracking *this_, struct mapset *ms);
54     void tracking_set_route(struct tracking *this_, struct route *rt);
55     void tracking_destroy(struct tracking *tr);
56     struct map *tracking_get_map(struct tracking *this_);
57     void tracking_init(void);
58     /* end of prototypes */
59     #ifdef __cplusplus
60     }
61     #endif
62    
63     #endif

   
Visit the ZANavi Wiki