00001 /* Copyright Robin Schirrmeister and Simon Skilevic 00002 * Lecture Efficient Route Planning Summer Semester 2011 00003 * Uni Freiburg 00004 */ 00005 00006 #ifndef ROUTEPLANNINGV2_EDGE_H_ 00007 #define ROUTEPLANNINGV2_EDGE_H_ 00008 00009 class Edge 00010 { 00011 public: 00012 Edge(int otherNodeId, int time); 00013 int otherNodeId; 00014 // time should be in seconds, unless otherwise noted :) 00015 int time; 00016 }; 00017 00018 #endif // ROUTEPLANNINGV2_EDGE_H_ 00019