Numworks Epsilon  1.4.1
Graphing Calculator Operating System
battery_timer.h
Go to the documentation of this file.
1 #ifndef APPS_BATTERY_TIMER_H
2 #define APPS_BATTERY_TIMER_H
3 
4 #include <escher.h>
5 
6 class AppsContainer;
7 
8 class BatteryTimer : public Timer {
9 public:
10  BatteryTimer(AppsContainer * container);
11 private:
12  bool fire() override;
13  AppsContainer * m_container;
14 };
15 
16 #endif
17 
Definition: timer.h:15
BatteryTimer(AppsContainer *container)