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 
21 public:
22  typedef std::shared_ptr<InlineKeyboardMarkup> Ptr;
23 
27  std::vector<std::vector<InlineKeyboardButton::Ptr>> inlineKeyboard;
28 
29 };
30 }
31 
32 #endif //TGBOT_INLINEKEYBOARDMARKUP_H
Definition: Api.h:44
std::shared_ptr< InlineKeyboardMarkup > Ptr
std::vector< std::vector< InlineKeyboardButton::Ptr > > inlineKeyboard