SUMO - Simulation of Urban MObility
ROMAEdgeBuilder.h
Go to the documentation of this file.
1 /****************************************************************************/
2 // Eclipse SUMO, Simulation of Urban MObility; see https://eclipse.org/sumo
3 // Copyright (C) 2001-2018 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 duarouter-edges
18 /****************************************************************************/
19 #ifndef ROMAEdgeBuilder_h
20 #define ROMAEdgeBuilder_h
21 
22 
23 // ===========================================================================
24 // included modules
25 // ===========================================================================
26 #include <config.h>
27 
29 
30 
31 // ===========================================================================
32 // class declarations
33 // ===========================================================================
34 class ROEdge;
35 class RONode;
36 
37 
38 // ===========================================================================
39 // class definitions
40 // ===========================================================================
51 public:
55 
56 
59 
60 
63 
75  ROEdge* buildEdge(const std::string& name, RONode* from, RONode* to, const int priority);
77 
78 
79 };
80 
81 
82 #endif
83 
84 /****************************************************************************/
85 
Interface for building instances of duarouter-edges.
~ROMAEdgeBuilder()
Destructor.
Interface for building instances of router-edges.
ROEdge * buildEdge(const std::string &name, RONode *from, RONode *to, const int priority)
Builds an edge with the given name.
ROMAEdgeBuilder()
Constructor.
A basic edge for routing applications.
Definition: ROEdge.h:72
Base class for nodes used by the router.
Definition: RONode.h:46