From d03eda27cdbe75470068d7513ecf510d8d342cf5 Mon Sep 17 00:00:00 2001 From: Oleg Morozenkov Date: Sun, 15 Jan 2017 02:46:48 +0300 Subject: Docs --- .../_inline_query_result_cached_mpeg4_gif_8h.html | 117 --------------------- ...ne_query_result_cached_mpeg4_gif_8h_source.html | 107 ------------------- docs/db/d2a/_webhook_info_8h.html | 117 --------------------- docs/db/d2a/_webhook_info_8h_source.html | 108 ------------------- 4 files changed, 449 deletions(-) delete mode 100644 docs/db/d2a/_inline_query_result_cached_mpeg4_gif_8h.html delete mode 100644 docs/db/d2a/_inline_query_result_cached_mpeg4_gif_8h_source.html delete mode 100644 docs/db/d2a/_webhook_info_8h.html delete mode 100644 docs/db/d2a/_webhook_info_8h_source.html (limited to 'docs/db/d2a') diff --git a/docs/db/d2a/_inline_query_result_cached_mpeg4_gif_8h.html b/docs/db/d2a/_inline_query_result_cached_mpeg4_gif_8h.html deleted file mode 100644 index 83a10e1..0000000 --- a/docs/db/d2a/_inline_query_result_cached_mpeg4_gif_8h.html +++ /dev/null @@ -1,117 +0,0 @@ - - - - - - - -tgbot-cpp: include/tgbot/types/InlineQueryResultCachedMpeg4Gif.h File Reference - - - - - - - - - - - - - - -
-
- - - - - - -
-
tgbot-cpp -
-
-
- - - - - - - -
-
- -
-
-
- -
- -
-
- - -
- -
- -
- -
-
InlineQueryResultCachedMpeg4Gif.h File Reference
-
-
-
#include <string>
-#include <memory>
-#include "tgbot/types/InlineQueryResult.h"
-
-

Go to the source code of this file.

- - - - -

-Classes

class  TgBot::InlineQueryResultCachedMpeg4Gif
 
- - - -

-Namespaces

 TgBot
 
-
-
- - - - diff --git a/docs/db/d2a/_inline_query_result_cached_mpeg4_gif_8h_source.html b/docs/db/d2a/_inline_query_result_cached_mpeg4_gif_8h_source.html deleted file mode 100644 index d2d8e6b..0000000 --- a/docs/db/d2a/_inline_query_result_cached_mpeg4_gif_8h_source.html +++ /dev/null @@ -1,107 +0,0 @@ - - - - - - - -tgbot-cpp: include/tgbot/types/InlineQueryResultCachedMpeg4Gif.h Source File - - - - - - - - - - - - - - -
-
- - - - - - -
-
tgbot-cpp -
-
-
- - - - - - - -
-
- -
-
-
- -
- -
-
- - -
- -
- -
-
-
InlineQueryResultCachedMpeg4Gif.h
-
-
-Go to the documentation of this file.
1 //
2 // Created by Konstantin Kukin on 27/12/16.
3 //
4 
5 #ifndef TGBOT_INLINEQUERYRESULTCACHEDMPEG4GIF_H
6 #define TGBOT_INLINEQUERYRESULTCACHEDMPEG4GIF_H
7 
8 #include <string>
9 #include <memory>
10 
12 
13 namespace TgBot {
14 
20 public:
21  static const std::string TYPE;
22 
23  typedef std::shared_ptr<InlineQueryResultCachedMpeg4Gif> Ptr;
24 
26  this->type = TYPE;
27  }
28 
32  std::string mpeg4FileId;
33 
34 };
35 }
36 
37 #endif //TGBOT_INLINEQUERYRESULTCACHEDMPEG4GIF_H
- -
Definition: Api.h:44
- - - -
std::shared_ptr< InlineQueryResultCachedMpeg4Gif > Ptr
- - -
-
- - - - diff --git a/docs/db/d2a/_webhook_info_8h.html b/docs/db/d2a/_webhook_info_8h.html deleted file mode 100644 index d1e7833..0000000 --- a/docs/db/d2a/_webhook_info_8h.html +++ /dev/null @@ -1,117 +0,0 @@ - - - - - - - -tgbot-cpp: include/tgbot/types/WebhookInfo.h File Reference - - - - - - - - - - - - - - -
-
- - - - - - -
-
tgbot-cpp -
-
-
- - - - - - - -
-
- -
-
-
- -
- -
-
- - -
- -
- -
- -
-
WebhookInfo.h File Reference
-
-
-
#include <string>
-#include <vector>
-#include <memory>
-
-

Go to the source code of this file.

- - - - -

-Classes

class  TgBot::WebhookInfo
 
- - - -

-Namespaces

 TgBot
 
-
-
- - - - diff --git a/docs/db/d2a/_webhook_info_8h_source.html b/docs/db/d2a/_webhook_info_8h_source.html deleted file mode 100644 index fa66a1d..0000000 --- a/docs/db/d2a/_webhook_info_8h_source.html +++ /dev/null @@ -1,108 +0,0 @@ - - - - - - - -tgbot-cpp: include/tgbot/types/WebhookInfo.h Source File - - - - - - - - - - - - - - -
-
- - - - - - -
-
tgbot-cpp -
-
-
- - - - - - - -
-
- -
-
-
- -
- -
-
- - -
- -
- -
-
-
WebhookInfo.h
-
-
-Go to the documentation of this file.
1 //
2 // Created by Konstantin Kukin on 26/12/16.
3 //
4 
5 #ifndef TGBOT_WEBHOOKINFO_H
6 #define TGBOT_WEBHOOKINFO_H
7 
8 #include <string>
9 #include <vector>
10 #include <memory>
11 
12 namespace TgBot {
13 
18 class WebhookInfo {
19 public:
20  typedef std::shared_ptr<WebhookInfo> Ptr;
21 
25  std::string url;
26 
31 
36 
40  int32_t lastErrorDate;
41 
45  std::string lastErrorMessage;
46 
50  int32_t maxConnections;
51 
55  std::vector<std::string> allowedUpdates;
56 };
57 }
58 
59 #endif //TGBOT_WEBHOOKINFO_H
Definition: Api.h:44
- - -
std::string lastErrorMessage
Definition: WebhookInfo.h:45
-
int32_t lastErrorDate
Definition: WebhookInfo.h:40
-
std::shared_ptr< WebhookInfo > Ptr
Definition: WebhookInfo.h:20
-
int32_t pendingUpdateCount
Definition: WebhookInfo.h:35
-
std::string url
Definition: WebhookInfo.h:25
-
int32_t maxConnections
Definition: WebhookInfo.h:50
-
std::vector< std::string > allowedUpdates
Definition: WebhookInfo.h:55
-
-
- - - - -- cgit v1.2.3