/home/martin/workspace/OpenStreetNav/src/elements/Edge.h
Go to the documentation of this file.
00001 /*
00002  * Edge.h
00003  *
00004  *  Created on: Nov 12, 2011
00005  *      Author: martin
00006  */
00007 
00008 #ifndef EDGE_H_
00009 #define EDGE_H_
00010 
00011 #include <stdint.h>
00012 
00013 namespace osm
00014 {
00015 
00016 class Edge
00017 {
00018 public:
00019     Edge(int64_t start_node = 0, int64_t end_node = 0, int64_t way_id = 0);
00020     virtual ~Edge();
00021     int64_t start_node;
00022     int64_t end_node;
00023     int64_t way_id;
00024 };
00025 
00026 } /* namespace display */
00027 #endif /* EDGE_H_ */
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Defines