diff --git a/VectoCore/VectoCore/Models/SimulationComponent/Impl/CycleGearbox.cs b/VectoCore/VectoCore/Models/SimulationComponent/Impl/CycleGearbox.cs index 6ea1392754fa7b47a3984885efb7c3c7cb4cd7ad..3f73834804fe9f2bad8f552a9eb99e24b0f904e1 100644 --- a/VectoCore/VectoCore/Models/SimulationComponent/Impl/CycleGearbox.cs +++ b/VectoCore/VectoCore/Models/SimulationComponent/Impl/CycleGearbox.cs @@ -339,6 +339,11 @@ namespace TUGraz.VectoCore.Models.SimulationComponent.Impl #region ICluchInfo + public override uint NextGear + { + get { return DataBus.CycleData.RightSample.Gear; } + } + public override bool ClutchClosed(Second absTime) { return (DataBus.DriverBehavior == DrivingBehavior.Braking @@ -378,6 +383,11 @@ namespace TUGraz.VectoCore.Models.SimulationComponent.Impl } public IGearbox Gearbox { get; set; } + + public uint NextGear + { + get { throw new System.NotImplementedException(); } + } } } } \ No newline at end of file