Remove unused class: Lane
This commit is contained in:
parent
7ee31cc894
commit
9a2def05a2
|
@ -78,7 +78,6 @@
|
||||||
<Compile Include="AppConstant.cs" />
|
<Compile Include="AppConstant.cs" />
|
||||||
<Compile Include="C3DeviceController.cs" />
|
<Compile Include="C3DeviceController.cs" />
|
||||||
<Compile Include="Camera.cs" />
|
<Compile Include="Camera.cs" />
|
||||||
<Compile Include="Lane.cs" />
|
|
||||||
<Compile Include="LaneIn.cs">
|
<Compile Include="LaneIn.cs">
|
||||||
<SubType>UserControl</SubType>
|
<SubType>UserControl</SubType>
|
||||||
</Compile>
|
</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
|
|
||||||
}
|
|
||||||
}
|
|
Loading…
Reference in New Issue
Block a user