Remove unused class: Lane
This commit is contained in:
@@ -78,7 +78,6 @@
|
||||
<Compile Include="AppConstant.cs" />
|
||||
<Compile Include="C3DeviceController.cs" />
|
||||
<Compile Include="Camera.cs" />
|
||||
<Compile Include="Lane.cs" />
|
||||
<Compile Include="LaneIn.cs">
|
||||
<SubType>UserControl</SubType>
|
||||
</Compile>
|
||||
|
||||
@@ -1,22 +0,0 @@
|
||||
namespace AIParkingApplication
|
||||
{
|
||||
public class Lane
|
||||
{
|
||||
private LaneType laneType;
|
||||
private string vehicleVideoStream;
|
||||
private string plateVideoStream;
|
||||
|
||||
public Lane(LaneType laneType, string vehicleVideoStream, string plateVideoStream)
|
||||
{
|
||||
this.laneType = laneType;
|
||||
this.vehicleVideoStream = vehicleVideoStream;
|
||||
this.plateVideoStream = plateVideoStream;
|
||||
}
|
||||
}
|
||||
|
||||
public enum LaneType
|
||||
{
|
||||
IN,
|
||||
OUT
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user