blob: 69cde927674a0333ed3c3eac740b98fffb154e5a (
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_MENUBUTTONDEFAULT_H
#define TGBOT_MENUBUTTONDEFAULT_H
#include "tgbot/types/MenuButton.h"
#include <memory>
namespace TgBot {
/**
* @brief Describes that no specific value for the menu button was set.
*
* @ingroup types
*/
class MenuButtonDefault : public MenuButton {
public:
static const std::string TYPE;
typedef std::shared_ptr<MenuButtonDefault> Ptr;
MenuButtonDefault() {
this->type = TYPE;
}
};
}
#endif //TGBOT_MENUBUTTONDEFAULT_H
|