Code development platform for open source projects from the European Union institutions

Skip to content
Snippets Groups Projects
Commit d09ad3d1 authored by Michael KRISPER's avatar Michael KRISPER
Browse files

merge

parent bffe7b5c
No related branches found
No related tags found
No related merge requests found
......@@ -81,8 +81,6 @@ namespace TUGraz.VectoCore.FileIO.EngineeringFile
public class AuxDataEng : DataBodyDecl.AuxDataDecl
{
[JsonProperty(Required = Required.Always)] public string ID;
[JsonProperty(Required = Required.Always)] public string Type;
[JsonProperty(Required = Required.Always)] public string Path;
}
......
......@@ -89,7 +89,7 @@ namespace TUGraz.VectoCore.Models.SimulationComponent.Impl
retVal = DriveDistance(absTime, ds);
//throw new NotImplementedException("Distance based Cycle is not yet implemented.");
throw new NotImplementedException("Distance based Cycle is not yet implemented.");
}
private IResponse DriveDistance(TimeSpan absTime, Meter ds)
......@@ -134,7 +134,10 @@ namespace TUGraz.VectoCore.Models.SimulationComponent.Impl
#endregion
protected IResponse ProcessResponse(IResponse response) {}
protected IResponse ProcessResponse(IResponse response)
{
throw new NotImplementedException();
}
#region VectoSimulationComponent
......
......@@ -154,6 +154,7 @@
<Compile Include="Models\Simulation\Impl\DistanceRun.cs" />
<Compile Include="Models\Simulation\Impl\PowertrainBuilder.cs" />
<Compile Include="Utils\DataTableExtensionMethods.cs" />
<Compile Include="Utils\EnumHelper.cs" />
<Compile Include="Utils\RessourceHelper.cs" />
<Compile Include="Models\Declaration\Segment.cs" />
<Compile Include="Models\SimulationComponent\Data\AuxiliaryCycleDataAdapter.cs" />
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment