tgbot-cpp
Loading...
Searching...
No Matches
MenuButtonDefault.h
Go to the documentation of this file.
1#ifndef TGBOT_MENUBUTTONDEFAULT_H
2#define TGBOT_MENUBUTTONDEFAULT_H
3
5
6#include <memory>
7
8namespace TgBot {
9
16public:
17 static const std::string TYPE;
18
19 typedef std::shared_ptr<MenuButtonDefault> Ptr;
20
22 this->type = TYPE;
23 }
24};
25}
26
27#endif //TGBOT_MENUBUTTONDEFAULT_H
Describes that no specific value for the menu button was set.
static const std::string TYPE
std::shared_ptr< MenuButtonDefault > Ptr
This abstract class is base of all bot menu buttons.
Definition MenuButton.h:19
std::string type
Type of the button.
Definition MenuButton.h:30
Definition Api.h:39