You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
632 B
24 lines
632 B
4 years ago
|
#ifndef ROTARY_H
|
||
|
#define ROTARY_H
|
||
|
|
||
|
#include "model/csm/core/consoleComponent/ControlAbstract.h"
|
||
|
|
||
|
/*****************************************************************************/
|
||
|
/**
|
||
|
* @brief Rotary class
|
||
|
* @author Mohammad Mohsen Talaie
|
||
|
* @details
|
||
|
* @date 12 Jan 2020
|
||
|
*/
|
||
|
/*****************************************************************************/
|
||
|
class Rotary : public ControlAbstract
|
||
|
{
|
||
|
public:
|
||
|
QList<CommandControl_t> getCommandList(const EConsole::eConsoleState& consoleState) override;
|
||
|
EConsole::eControlType getType()const override;
|
||
|
void enable() override;
|
||
|
void disable() override;
|
||
|
};
|
||
|
|
||
|
#endif //ROTARY_H
|