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.

BoilerTankService.h 253B

123456789101112131415161718
  1. #pragma once
  2. #include "ILifeCycle.h"
  3. #include "Boiler.h"
  4. class BoilerTankService
  5. : public ILifeCycle
  6. {
  7. public:
  8. BoilerTankService(BoilerTankState* mBoilerTank);
  9. void loop() override;
  10. protected:
  11. BoilerTankState* m_boilerTank;
  12. };