Attribute VB_Name = "constants" ' ---------------------------------------------------------- ' file: constants.bas ' author: Brendan Kidwell / GeoGraphics Lab ' date: 10 August 2001 ' ' Contains public declarations needed by a program that ' uses the cRouteModel class. ' ---------------------------------------------------------- Option Explicit ' This enumeration is used to indicate the direction of a moving bus. Public Enum rm_DIRECTION rm_DECREASING = 0 ' toward the beginning of the route. rm_INCREASING = 1 ' toward the end of the route. End Enum