Blame view

build3/apps/battery_timer.h 265 Bytes
6663b6c9   adorian   projet complet av...
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