package org.opentrafficsim.road.network; import org.opentrafficsim.core.network.NetworkInterface; import org.opentrafficsim.core.perception.PerceivableContext; import org.opentrafficsim.road.definitions.RoadDefinitions; /** * RoadNetwork adds a number of methods to the Network class that are specific for roads, such as the LaneTypes. *

* Copyright (c) 2003-2021 Delft University of Technology, Jaffalaan 5, 2628 BX Delft, the Netherlands. All rights reserved. * BSD-style license. See OpenTrafficSim License. *

* @author Alexander Verbraeck */ public interface RoadNetworkInterface extends NetworkInterface, PerceivableContext, RoadDefinitions { // interfaces that are unique to a Roadnetwork as opposed to a Network }