1234567891011121314151617181920212223242526 |
- /*!
- * \file include/commands/CommandBind.h
- * \brief Bind Command
- *
- * \author xythobuz
- */
-
- #ifndef _COMMAND_BIND_H_
- #define _COMMAND_BIND_H_
-
- #include "commands/Command.h"
-
- class CommandBind : public Command {
- public:
- virtual std::string name();
- virtual std::string brief();
- virtual void printHelp();
- virtual int execute(std::istream& args);
-
- private:
- ActionEvents stringToActionEvent(std::string action);
- KeyboardButton stringToKeyboardButton(std::string key);
- };
-
- #endif
|