AcsDevice.cs 512 B

12345678910111213141516171819202122232425262728
  1. using DeviceCenter;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace DeviceCenter
  8. {
  9. class AcsDevice : Device
  10. {
  11. public AcsDevice()
  12. {
  13. this.type = Device.Type.ACS;
  14. }
  15. public override void Init()
  16. {
  17. throw new NotImplementedException();
  18. }
  19. public override void dispose()
  20. {
  21. throw new NotImplementedException();
  22. }
  23. }
  24. }