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/fakes.h

Parent Directory Parent Directory | Revision Log Revision Log


Revision 533 - (show annotations) (download) (as text)
Sat Nov 27 14:56:49 2010 UTC (14 years, 4 months ago) by amb
File MIME type: text/x-chdr
File size: 1762 byte(s)
Initial revision

1 /***************************************
2 $Header: /home/amb/CVS/routino/src/fakes.h,v 1.1 2010-11-27 14:56:49 amb Exp $
3
4 Header file for fake node and segment function prototypes
5
6 Part of the Routino routing software.
7 ******************/ /******************
8 This file Copyright 2008-2010 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 FAKES_H
26 #define FAKES_H /*+ To stop multiple inclusions. +*/
27
28 #include "types.h"
29
30
31 /* In fakes.c */
32
33 /*+ Return true if this is a fake node. +*/
34 #define IsFakeNode(xxx) ((xxx)>=NODE_FAKE)
35
36 /*+ Return true if this is a fake segment. +*/
37 #define IsFakeSegment(xxx) ((xxx)>=SEGMENT_FAKE)
38
39 index_t CreateFakes(Nodes *nodes,int point,Segment *segment,index_t node1,index_t node2,distance_t dist1,distance_t dist2);
40
41 void GetFakeLatLong(index_t node, double *latitude,double *longitude);
42
43 Segment *FirstFakeSegment(index_t node);
44 Segment *NextFakeSegment(Segment *segment,index_t node);
45 Segment *ExtraFakeSegment(index_t node,index_t fakenode);
46
47 Segment *LookupFakeSegment(index_t index);
48 index_t IndexFakeSegment(Segment *segment);
49
50
51 #endif /* FAKES_H */