From b22c20c4db8c35eaee99075d055f74697c5805b8 Mon Sep 17 00:00:00 2001 From: Oleg Morozenkov Date: Sun, 15 Jan 2017 02:33:59 +0300 Subject: Docs --- docs/dc/d83/_input_message_content_8h.html | 115 ++++++++++++++++++++ docs/dc/d83/_input_message_content_8h_source.html | 104 ++++++++++++++++++ docs/dc/d83/_input_venue_message_content_8h.html | 116 +++++++++++++++++++++ .../_input_venue_message_content_8h_source.html | 109 +++++++++++++++++++ 4 files changed, 444 insertions(+) create mode 100644 docs/dc/d83/_input_message_content_8h.html create mode 100644 docs/dc/d83/_input_message_content_8h_source.html create mode 100644 docs/dc/d83/_input_venue_message_content_8h.html create mode 100644 docs/dc/d83/_input_venue_message_content_8h_source.html (limited to 'docs/dc/d83') diff --git a/docs/dc/d83/_input_message_content_8h.html b/docs/dc/d83/_input_message_content_8h.html new file mode 100644 index 0000000..f6cf953 --- /dev/null +++ b/docs/dc/d83/_input_message_content_8h.html @@ -0,0 +1,115 @@ + + + + + + + +tgbot-cpp: include/tgbot/types/InputMessageContent.h File Reference + + + + + + + + + + + + + + +
+
+ + + + + + +
+
tgbot-cpp +
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+ +
+ +
+ +
+
InputMessageContent.h File Reference
+
+
+
#include <memory>
+
+

Go to the source code of this file.

+ + + + +

+Classes

class  TgBot::InputMessageContent
 
+ + + +

+Namespaces

 TgBot
 
+
+
+ + + + diff --git a/docs/dc/d83/_input_message_content_8h_source.html b/docs/dc/d83/_input_message_content_8h_source.html new file mode 100644 index 0000000..bf4154d --- /dev/null +++ b/docs/dc/d83/_input_message_content_8h_source.html @@ -0,0 +1,104 @@ + + + + + + + +tgbot-cpp: include/tgbot/types/InputMessageContent.h Source File + + + + + + + + + + + + + + +
+
+ + + + + + +
+
tgbot-cpp +
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+ +
+ +
+
+
InputMessageContent.h
+
+
+Go to the documentation of this file.
1 //
2 // Created by Konstantin Kukin on 26/12/16.
3 //
4 
5 #ifndef TGBOT_INPUTMESSAGECONTENT_H
6 #define TGBOT_INPUTMESSAGECONTENT_H
7 
8 #include <memory>
9 
10 namespace TgBot {
11 
17 public:
18  typedef std::shared_ptr<InputMessageContent> Ptr;
19 
20  InputMessageContent(const std::string &tType):
21  type(tType)
22  {}
23 
31  std::string type;
32 
33  virtual ~InputMessageContent() { }
34 };
35 }
36 
37 #endif //TGBOT_INPUTMESSAGECONTENT_H
+
std::shared_ptr< InputMessageContent > Ptr
+
Definition: Api.h:44
+
InputMessageContent(const std::string &tType)
+ + +
+
+ + + + diff --git a/docs/dc/d83/_input_venue_message_content_8h.html b/docs/dc/d83/_input_venue_message_content_8h.html new file mode 100644 index 0000000..1b15f72 --- /dev/null +++ b/docs/dc/d83/_input_venue_message_content_8h.html @@ -0,0 +1,116 @@ + + + + + + + +tgbot-cpp: include/tgbot/types/InputVenueMessageContent.h File Reference + + + + + + + + + + + + + + +
+
+ + + + + + +
+
tgbot-cpp +
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+ +
+ +
+ +
+
InputVenueMessageContent.h File Reference
+
+
+
#include <memory>
+#include <string>
+
+

Go to the source code of this file.

+ + + + +

+Classes

class  TgBot::InputVenueMessageContent
 
+ + + +

+Namespaces

 TgBot
 
+
+
+ + + + diff --git a/docs/dc/d83/_input_venue_message_content_8h_source.html b/docs/dc/d83/_input_venue_message_content_8h_source.html new file mode 100644 index 0000000..13c29aa --- /dev/null +++ b/docs/dc/d83/_input_venue_message_content_8h_source.html @@ -0,0 +1,109 @@ + + + + + + + +tgbot-cpp: include/tgbot/types/InputVenueMessageContent.h Source File + + + + + + + + + + + + + + +
+
+ + + + + + +
+
tgbot-cpp +
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+ +
+ +
+
+
InputVenueMessageContent.h
+
+
+Go to the documentation of this file.
1 //
2 // Created by Konstantin Kukin on 26/12/16.
3 //
4 
5 
6 #ifndef TGBOT_INPUTVENUEMESSAGECONTENT_H
7 #define TGBOT_INPUTVENUEMESSAGECONTENT_H
8 
9 #include <memory>
10 #include <string>
11 
12 namespace TgBot {
13 
19 public:
20  typedef std::shared_ptr<InputVenueMessageContent> Ptr;
21 
23  InputMessageContent("InputVenueMessageContent")
24  {}
25 
29  float latitude;
30 
34  float longitude;
35 
39  std::string title;
40 
44  std::string address;
45 
49  std::string foursquareId;
50 
52 };
53 }
54 
55 #endif //TGBOT_INPUTVENUEMESSAGECONTENT_H
+
Definition: Api.h:44
+ + + + + + + + +
std::shared_ptr< InputVenueMessageContent > Ptr
+
+
+ + + + -- cgit v1.2.3