From c8d40dccabaaa406faed6c0797a92bac811c9d0f Mon Sep 17 00:00:00 2001 From: Oleg Morozenkov Date: Tue, 5 Jun 2018 19:07:27 +0300 Subject: Update docs --- docs/_inline_keyboard_markup_8h_source.html | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'docs/_inline_keyboard_markup_8h_source.html') diff --git a/docs/_inline_keyboard_markup_8h_source.html b/docs/_inline_keyboard_markup_8h_source.html index d1015df..d95bd02 100644 --- a/docs/_inline_keyboard_markup_8h_source.html +++ b/docs/_inline_keyboard_markup_8h_source.html @@ -83,20 +83,20 @@ $(document).ready(function(){initNavTree('_inline_keyboard_markup_8h_source.html
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:46
+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:47
-
std::shared_ptr< InlineKeyboardMarkup > Ptr
- -
std::vector< std::vector< InlineKeyboardButton::Ptr > > inlineKeyboard
+
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...