tgbot-cpp
InlineKeyboardMarkup.h
Go to the documentation of this file.
1 //
2 // Created by Andrea Giove on 17/04/16.
3 //
4 
5 #ifndef TGBOT_INLINEKEYBOARDMARKUP_H
6 #define TGBOT_INLINEKEYBOARDMARKUP_H
7 
8 #include <vector>
9 #include <memory>
10 
13 
14 namespace TgBot {
15 
22 public:
23  typedef std::shared_ptr<InlineKeyboardMarkup> Ptr;
24 
28  std::vector<std::vector<InlineKeyboardButton::Ptr>> inlineKeyboard;
29 
30 };
31 }
32 
33 #endif //TGBOT_INLINEKEYBOARDMARKUP_H
Definition: Api.h:49
std::shared_ptr< InlineKeyboardMarkup > Ptr
This abstract class is base of all keyboard related events.
Definition: GenericReply.h:34
std::vector< std::vector< InlineKeyboardButton::Ptr > > inlineKeyboard
Array of button rows, each represented by an Array of InlineKeyboardButton objects.
This object represents an inline keyboard that appears right next to the message it belongs to...