#ifndef ROTAYBUTTON_H #define ROTAYBUTTON_H #include "Led.h" class RotayButton { private: char _functionCode; Led _led; public: RotayButton(char functionCode); RotayButton(char functionCode, char ledFunctionCode); Led* getLed(); QByteArray rotate(int value); }; #endif // ROTAYBUTTON_H