blob: ae514274e2d7bf0613d8b423b5ae64a878e0060e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
#ifndef TGBOT_MENUBUTTONCOMMANDS_H
#define TGBOT_MENUBUTTONCOMMANDS_H
#include "tgbot/types/MenuButton.h"
#include <memory>
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<MenuButtonCommands> Ptr;
MenuButtonCommands() {
this->type = TYPE;
}
};
}
#endif //TGBOT_MENUBUTTONCOMMANDS_H
|