Add Interface: ILane
This commit is contained in:
parent
86949443bb
commit
96d01f00f5
|
@ -78,6 +78,7 @@
|
||||||
<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="ILane.cs" />
|
||||||
<Compile Include="LaneIn.cs">
|
<Compile Include="LaneIn.cs">
|
||||||
<SubType>UserControl</SubType>
|
<SubType>UserControl</SubType>
|
||||||
</Compile>
|
</Compile>
|
||||||
|
|
8
AIParkingApplication/ILane.cs
Normal file
8
AIParkingApplication/ILane.cs
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
namespace AIParkingApplication
|
||||||
|
{
|
||||||
|
public interface ILane
|
||||||
|
{
|
||||||
|
void Start();
|
||||||
|
void Stop();
|
||||||
|
}
|
||||||
|
}
|
|
@ -7,7 +7,7 @@ using System.Windows.Forms;
|
||||||
|
|
||||||
namespace AIParkingApplication
|
namespace AIParkingApplication
|
||||||
{
|
{
|
||||||
public partial class LaneIn : UserControl
|
public partial class LaneIn : UserControl, ILane
|
||||||
{
|
{
|
||||||
private Camera overviewCamera;
|
private Camera overviewCamera;
|
||||||
private Camera plateCamera;
|
private Camera plateCamera;
|
||||||
|
|
Loading…
Reference in New Issue
Block a user