- using BPASmartClient.Device;
- using BPASmartClient.Helper;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
-
- namespace BPASmartClient.DeviceProxy
- {
- /// <summary>
- /// 设备管理器,统一管理所有设备资源
- /// </summary>
- public class DeviceMgr:Singleton<DeviceMgr>
- {
- //设备集合
- private List<IDevice> devices=new List<IDevice>();
-
- /// <summary>
- /// 设备加载
- /// </summary>
- public void LoadDevice() {
-
- }
- }
- }
|