using Bro.Common.Base;
|
using Bro.Common.Helper;
|
using Bro.Common.Interface;
|
using System;
|
using System.Collections.Generic;
|
using System.Linq;
|
using System.Text;
|
using System.Threading.Tasks;
|
|
namespace Bro.Device.Gocator
|
{
|
[Device("Gocator", "Gocator激光扫描仪", EnumHelper.DeviceAttributeType.Device)]
|
public class GocatorDriver : CameraBase
|
{
|
public override IOperationConfig GetOperationConfigFromDevice()
|
{
|
throw new NotImplementedException();
|
}
|
|
public override void Snapshot()
|
{
|
throw new NotImplementedException();
|
}
|
|
public override void UploadOperationConfig(IOperationConfig config)
|
{
|
throw new NotImplementedException();
|
}
|
|
protected override void Init()
|
{
|
throw new NotImplementedException();
|
}
|
|
protected override void Pause()
|
{
|
throw new NotImplementedException();
|
}
|
|
protected override void Resume()
|
{
|
throw new NotImplementedException();
|
}
|
}
|
}
|