CarCamDevice.cs 500 B

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