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

Skip to content
Snippets Groups Projects
Commit 1dba0c52 authored by Harald Martini's avatar Harald Martini
Browse files

added (empty) DeclarationModeHeavyLorryRunDataFactories for HEV, PEV and Conventional Heavy Lorries

parent f6f32158
No related branches found
No related tags found
No related merge requests found
......@@ -31,7 +31,6 @@
using System;
using System.Collections.Generic;
using System.Linq;
using TUGraz.VectoCommon.Exceptions;
using TUGraz.VectoCommon.InputData;
using TUGraz.VectoCommon.Models;
......@@ -229,4 +228,76 @@ namespace TUGraz.VectoCore.InputData.Reader.Impl
}
public class DeclarationModeHeavyLorryRunDataFactory
{
public abstract class LorryBase : IVectoRunDataFactory
{
#region Implementation of IVectoRunDataFactory
public IEnumerable<VectoRunData> NextRun()
{
throw new NotImplementedException();
}
#endregion
}
public class Conventional : LorryBase
{
}
public class HEV_S2 : LorryBase
{
}
public class HEV_S3 : LorryBase
{
}
public class HEV_S4 : LorryBase
{
}
public class HEV_P1 : LorryBase
{
}
public class HEV_P2 : LorryBase
{
}
public class HEV_P2_5 : LorryBase
{
}
public class HEV_P3 : LorryBase
{
}
public class HEV_P4 : LorryBase
{
}
}
}
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