VERSION 1.0 CLASS BEGIN MultiUse = -1 'True Persistable = 0 'NotPersistable DataBindingBehavior = 0 'vbNone DataSourceBehavior = 0 'vbNone MTSTransactionMode = 0 'NotAnMTSObject END Attribute VB_Name = "cBus" Attribute VB_GlobalNameSpace = False Attribute VB_Creatable = True Attribute VB_PredeclaredId = False Attribute VB_Exposed = False ' ---------------------------------------------------------- ' file: cBus.cls ' author: Brendan Kidwell / GeoGraphics Lab ' date: 10 August 2001 ' ' This is a simple container class to hold information for ' one particular bus inside a RouteModel object. ' ---------------------------------------------------------- Option Explicit Public BusID As String Public CurrZone As Integer Public CurrDirection As rm_DIRECTION Public PrevZone As Integer Public StartTime As Date Public EndTime As Date Public LastPosTime As Date Public Expires As Date