终端一体化运控平台
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.
 
 
 

27 rader
585 B

  1. using BPASmartClient.Device;
  2. using BPASmartClient.Helper;
  3. using System;
  4. using System.Collections.Generic;
  5. using System.Linq;
  6. using System.Text;
  7. using System.Threading.Tasks;
  8. namespace BPASmartClient.DeviceProxy
  9. {
  10. /// <summary>
  11. /// 设备管理器,统一管理所有设备资源
  12. /// </summary>
  13. public class DeviceMgr:Singleton<DeviceMgr>
  14. {
  15. //设备集合
  16. private List<IDevice> devices=new List<IDevice>();
  17. /// <summary>
  18. /// 设备加载
  19. /// </summary>
  20. public void LoadDevice() {
  21. }
  22. }
  23. }