From 699bbf402e9d6333d4dcb0c75e6d32e4386fd6dc Mon Sep 17 00:00:00 2001 From: xcd <834800634@qq.com> Date: 星期日, 28 六月 2020 18:59:26 +0800 Subject: [PATCH] 主体流程完成 --- 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