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 151 - (show annotations) (download) (as text)
Wed Apr 8 16:54:34 2009 UTC (15 years, 11 months ago) by amb
File MIME type: text/x-chdr
File size: 2220 byte(s)
Changed the license to Affero GPLv3.

1 /***************************************
2 $Header: /home/amb/CVS/routino/src/functions.h,v 1.30 2009-04-08 16:54:34 amb Exp $
3
4 Header file for function prototypes
5
6 Part of the Routino routing software.
7 ******************/ /******************
8 This file Copyright 2008,2009 Andrew M. Bishop
9
10 This program is free software: you can redistribute it and/or modify
11 it under the terms of the GNU Affero General Public License as published by
12 the Free Software Foundation, either version 3 of the License, or
13 (at your option) any later version.
14
15 This program is distributed in the hope that it will be useful,
16 but WITHOUT ANY WARRANTY; without even the implied warranty of
17 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 GNU Affero General Public License for more details.
19
20 You should have received a copy of the GNU Affero General Public License
21 along with this program. If not, see <http://www.gnu.org/licenses/>.
22 ***************************************/
23
24
25 #ifndef FUNCTIONS_H
26 #define FUNCTIONS_H /*+ To stop multiple inclusions. +*/
27
28 #include <stdio.h>
29
30 #include "types.h"
31 #include "profiles.h"
32 #include "results.h"
33
34
35 /* In files.c */
36
37 void *MapFile(const char *filename);
38
39 int OpenFile(const char *filename);
40 int WriteFile(int fd,void *address,size_t length);
41 void CloseFile(int fd);
42
43
44 /* In osmparser.c */
45
46 int ParseXML(FILE *file,NodesX *OSMNodes,SegmentsX *OSMSegments,WaysX *OSMWays,Profile *profile);
47
48
49 /* In optimiser.c */
50
51 Results *FindRoute(Nodes *nodes,Segments *segments,Ways *ways,index_t start,index_t finish,Profile *profile,int all);
52 Results *FindRoute3(Nodes *supernodes,Segments *supersegments,Ways *superways,index_t start,index_t finish,Results *begin,Results *end,Profile *profile);
53
54 void PrintRoute(Results *results,Nodes *nodes,Segments *segments,Ways *ways,index_t start,index_t finish,Profile *profile);
55
56 Results *FindStartRoutes(Nodes *nodes,Segments *segments,Ways *ways,index_t start,Profile *profile);
57 Results *FindFinishRoutes(Nodes *nodes,Segments *segments,Ways *ways,index_t finish,Profile *profile);
58
59 Results *CombineRoutes(Results *results,Nodes *nodes,Segments *segments,Ways *ways,index_t start,index_t finish,Profile *profile);
60
61
62 #endif /* FUNCTIONS_H */

Properties

Name Value
cvs:description Function prototypes.