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