#ifndef StateHandler_h #define StateHandler_h class AbstractStateHandler { public: virtual void setup() = 0; virtual void loop() = 0; }; #endif