领胜LDS 键盘AOI检测项目
wells.liu
2020-06-29 c339e592f9232e460602093cb3248adf2484eebb
src/Bro.Device.Gocator/GocatorDriver.cs
@@ -1,4 +1,7 @@
using System;
using Bro.Common.Base;
using Bro.Common.Helper;
using Bro.Common.Interface;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
@@ -6,7 +9,37 @@
namespace Bro.Device.Gocator
{
    class GocatorDriver
    [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();
        }
    }
}