// Copyright 2018, University of Freiburg, // Chair of Algorithms and Data Structures. // Authors: Patrick Brosi #ifndef PFAEDLE_ROUTER_GRAPH_H_ #define PFAEDLE_ROUTER_GRAPH_H_ #include "pfaedle/trgraph/Graph.h" #include "pfaedle/router/EdgePL.h" #include "pfaedle/router/NodePL.h" #include "util/graph/DirGraph.h" using util::geo::Point; using util::geo::Line; namespace pfaedle { namespace router { typedef util::graph::Edge Edge; typedef util::graph::Node Node; typedef util::graph::DirGraph Graph; } // namespace router } // namespace pfaedle #endif // PFAEDLE_ROUTER_GRAPH_H_