#ifndef TGBOT_BOTCOMMANDSCOPEDEFAULT_H #define TGBOT_BOTCOMMANDSCOPEDEFAULT_H #include "tgbot/types/BotCommandScope.h" #include namespace TgBot { /** * @brief Represents the default scope of bot commands. * Default commands are used if no commands with a narrower scope are specified for the user. * * @ingroup types */ class BotCommandScopeDefault : public BotCommandScope { public: static const std::string TYPE; typedef std::shared_ptr Ptr; BotCommandScopeDefault() { this->type = TYPE; } }; } #endif //TGBOT_BOTCOMMANDSCOPEDEFAULT_H