Eclipse SUMO - Simulation of Urban MObility
RODFEdgeBuilder.h
Go to the documentation of this file.
1 /****************************************************************************/
2 // Eclipse SUMO, Simulation of Urban MObility; see https://eclipse.org/sumo
3 // Copyright (C) 2006-2019 German Aerospace Center (DLR) and others.
4 // This program and the accompanying materials
5 // are made available under the terms of the Eclipse Public License v2.0
6 // which accompanies this distribution, and is available at
7 // http://www.eclipse.org/legal/epl-v20.html
8 // SPDX-License-Identifier: EPL-2.0
9 /****************************************************************************/
17 // Interface for building instances of dfrouter-edges
18 /****************************************************************************/
19 #ifndef RODFEdgeBuilder_h
20 #define RODFEdgeBuilder_h
21 
22 
23 // ===========================================================================
24 // included modules
25 // ===========================================================================
26 #include <config.h>
27 
29 
30 
31 // ===========================================================================
32 // class declarations
33 // ===========================================================================
34 class ROEdge;
35 
36 
37 // ===========================================================================
38 // class definitions
39 // ===========================================================================
50 public:
53 
54 
57 
58 
61 
73  ROEdge* buildEdge(const std::string& name, RONode* from, RONode* to, const int priority);
75 
76 
77 };
78 
79 
80 #endif
81 
82 /****************************************************************************/
83 
ROAbstractEdgeBuilder.h
RODFEdgeBuilder
Interface for building instances of dfrouter-edges.
Definition: RODFEdgeBuilder.h:49
RODFEdgeBuilder::buildEdge
ROEdge * buildEdge(const std::string &name, RONode *from, RONode *to, const int priority)
Builds an edge with the given name.
Definition: RODFEdgeBuilder.cpp:39
RODFEdgeBuilder::~RODFEdgeBuilder
~RODFEdgeBuilder()
Destructor.
Definition: RODFEdgeBuilder.cpp:35
ROEdge
A basic edge for routing applications.
Definition: ROEdge.h:72
config.h
RONode
Base class for nodes used by the router.
Definition: RONode.h:45
ROAbstractEdgeBuilder
Interface for building instances of router-edges.
Definition: ROAbstractEdgeBuilder.h:53
RODFEdgeBuilder::RODFEdgeBuilder
RODFEdgeBuilder()
Constructor.
Definition: RODFEdgeBuilder.cpp:32