#ifndef TGBOT_MENUBUTTONCOMMANDS_H #define TGBOT_MENUBUTTONCOMMANDS_H #include "tgbot/types/MenuButton.h" #include namespace TgBot { /** * @brief Represents a menu button, which opens the bot's list of commands. * * @ingroup types */ class MenuButtonCommands : public MenuButton { public: static const std::string TYPE; typedef std::shared_ptr Ptr; MenuButtonCommands() { this->type = TYPE; } }; } #endif //TGBOT_MENUBUTTONCOMMANDS_H