1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
#ifndef APPS_BATTERY_TIMER_H #define APPS_BATTERY_TIMER_H #include <escher.h> class AppsContainer; class BatteryTimer : public Timer { public: BatteryTimer(AppsContainer * container); private: bool fire() override; AppsContainer * m_container; }; #endif