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