From c339e592f9232e460602093cb3248adf2484eebb Mon Sep 17 00:00:00 2001 From: wells.liu <wells.liu@broconcentric.com> Date: 星期一, 29 六月 2020 12:31:30 +0800 Subject: [PATCH] Merge branch 'master' of http://gitblit.broconcentric.com:8088/r/M071 --- src/Bro.Device.Gocator/GocatorDriver.cs | 37 +++++++++++++++++++++++++++++++++++-- 1 files changed, 35 insertions(+), 2 deletions(-) diff --git a/src/Bro.Device.Gocator/GocatorDriver.cs b/src/Bro.Device.Gocator/GocatorDriver.cs index 678c62c..0290bd1 100644 --- a/src/Bro.Device.Gocator/GocatorDriver.cs +++ b/src/Bro.Device.Gocator/GocatorDriver.cs @@ -1,4 +1,7 @@ -锘縰sing System; +锘縰sing 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(); + } } } -- Gitblit v1.8.0