tgbot-cpp
Loading...
Searching...
No Matches
InlineKeyboardMarkup.h
Go to the documentation of this file.
1#ifndef TGBOT_INLINEKEYBOARDMARKUP_H
2#define TGBOT_INLINEKEYBOARDMARKUP_H
3
6
7#include <vector>
8#include <memory>
9
10namespace TgBot {
11
18public:
19 typedef std::shared_ptr<InlineKeyboardMarkup> Ptr;
20
24 std::vector<std::vector<InlineKeyboardButton::Ptr>> inlineKeyboard;
25
26};
27}
28
29#endif //TGBOT_INLINEKEYBOARDMARKUP_H
This abstract class is base of all keyboard related events.
This object represents an inline keyboard that appears right next to the message it belongs to.
std::shared_ptr< InlineKeyboardMarkup > Ptr
std::vector< std::vector< InlineKeyboardButton::Ptr > > inlineKeyboard
Array of button rows, each represented by an Array of InlineKeyboardButton objects.
Definition Api.h:39