#ifndef KEYER_H #define KEYER_H class Keyer final { public: enum class State { WAIT }; void run(); private: State state{State::WAIT}; }; #endif