Eclipse SUMO - Simulation of Urban MObility
MSLinkCont.h
Go to the documentation of this file.
1 /****************************************************************************/
2 // Eclipse SUMO, Simulation of Urban MObility; see https://eclipse.org/sumo
3 // Copyright (C) 2002-2020 German Aerospace Center (DLR) and others.
4 // This program and the accompanying materials are made available under the
5 // terms of the Eclipse Public License 2.0 which is available at
6 // https://www.eclipse.org/legal/epl-2.0/
7 // This Source Code may also be made available under the following Secondary
8 // Licenses when the conditions for such availability set forth in the Eclipse
9 // Public License 2.0 are satisfied: GNU General Public License, version 2
10 // or later which is available at
11 // https://www.gnu.org/licenses/old-licenses/gpl-2.0-standalone.html
12 // SPDX-License-Identifier: EPL-2.0 OR GPL-2.0-or-later
13 /****************************************************************************/
19 // A vector of links
20 /****************************************************************************/
21 #pragma once
22 #include <config.h>
23 
24 #include <vector>
25 #include "MSLink.h"
26 
27 
28 // ===========================================================================
29 // class declarations
30 // ===========================================================================
31 class MSEdge;
32 class MSLane;
33 
34 
35 // ===========================================================================
36 // class definitions
37 // ===========================================================================
42 typedef std::vector<MSLink*> MSLinkCont;
43 
44 
50 public:
53  static const MSEdge* getInternalFollowingEdge(const MSLane* fromLane,
54  const MSEdge* followerAfterInternal);
55 
56  static const MSLane* getInternalFollowingLane(const MSLane* fromLane,
57  const MSLane* followerAfterInternal);
58 
62  static MSLink* getConnectingLink(const MSLane& from, const MSLane& to);
63 };
A road/street connecting two junctions.
Definition: MSEdge.h:77
Representation of a lane in the micro simulation.
Definition: MSLane.h:82