Routino SVN Repository Browser

Check out the latest version of Routino: svn co http://routino.org/svn/trunk routino

ViewVC logotype

Contents of /trunk/src/functions.h

Parent Directory Parent Directory | Revision Log Revision Log


Revision 4 - (show annotations) (download) (as text)
Thu Jan 1 20:01:14 2009 UTC (16 years, 3 months ago) by amb
File MIME type: text/x-chdr
File size: 1765 byte(s)
Remove the functions to initialise the node and segment arrays.

1 /***************************************
2 $Header: /home/amb/CVS/routino/src/functions.h,v 1.2 2009-01-01 20:01:14 amb Exp $
3
4 Header file for function prototypes
5 ******************/ /******************
6 Written by Andrew M. Bishop
7
8 This file Copyright 2008,2009 Andrew M. Bishop
9 It may be distributed under the GNU Public License, version 2, or
10 any higher version. See section COPYING of the GNU Public license
11 for conditions under which this file may be redistributed.
12 ***************************************/
13
14
15 #ifndef FUNCTIONS_H
16 #define FUNCTIONS_H /*+ To stop multiple inclusions. +*/
17
18 #include <stdio.h>
19
20 #include "types.h"
21
22
23 /* In osmparser.c */
24
25 int ParseXML(FILE *file);
26
27
28 /* In nodes.c */
29
30 int NewNodeList(void);
31
32 int LoadNodeList(const char *filename);
33 int SaveNodeList(const char *filename);
34
35 Node *FindNode(node_t id);
36
37 void AppendNode(node_t id,latlong_t latitude,latlong_t longitude);
38
39
40 /* In ways.c */
41
42 int NewWayList(void);
43
44 int LoadWayList(const char *filename);
45 int SaveWayList(const char *filename);
46
47 Way *FindWay(way_t id);
48
49 void AppendWay(way_t id,const char *name);
50
51
52 /* In segments.c */
53
54 int NewSegmentList(void);
55
56 int LoadSegmentList(const char *filename);
57 int SaveSegmentList(const char *filename);
58
59 Segment *FindFirstSegment(node_t node);
60 Segment *FindNextSegment(Segment *segment);
61
62 void AppendSegment(node_t node1,node_t node2,way_t way,distance_t distance,duration_t duration);
63
64 distance_t SegmentLength(Node *node1,Node *node2);
65
66
67 /* In files.c */
68
69 void *MapFile(const char *filename);
70
71 void UnMapFile(void *address);
72
73 int WriteFile(const char *filename,void *address,size_t length);
74
75
76 /* In optimiser.c */
77
78 void FindRoute(node_t start,node_t finish);
79 void PrintRoute(node_t start,node_t finish);
80
81 #endif /* FUNCTIONS_H */

Properties

Name Value
cvs:description Function prototypes.