储能工商业-261Kwh-功率计划曲线App
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

OperateDevice.h 377B

1234567891011121314151617181920212223242526
  1. /*
  2. * Device.h
  3. *
  4. * Created on: 2020年9月11日
  5. * Author: vsbes
  6. */
  7. #ifndef MODELS_DEVICES_OPERATEDEVICE_H_
  8. #define MODELS_DEVICES_OPERATEDEVICE_H_
  9. #include "../../common/Type.h"
  10. #include "Common.h"
  11. interface OperateDevice
  12. {
  13. virtual ~OperateDevice()
  14. {
  15. }
  16. virtual HRESULT init() = 0;
  17. virtual void other() = 0;
  18. };
  19. #endif /* MODELS_DEVICES_OPERATEDEVICE_H_ */