1 /*
2 * Created on Dec 17, 2003
3 *
4 * Copyright (c) 2003, 2004 Delft University of Technology Jaffalaan 5, 2628 BX
5 * Delft, the Netherlands All rights reserved.
6 *
7 * This software is proprietary information of Delft University of Technology
8 * The code is published under the General Public License
9 */
10
11 package nl.tudelft.simulation.traffic.controlpoint.real;
12 /***
13 * This interface defines a ControlPoint after which the maximum speed the
14 * vehicle may drive, changes.
15 *
16 * @author J.H. Kwakkel & H.W.G. Phaff
17 */
18 public interface SpeedLimitInterface extends VisibleControlPointInterface
19 {
20 /***
21 * @return the new speedLimit
22 */
23 public double getSpeedLimit();
24 }