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/_file_8h_source.html | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'docs/_file_8h_source.html') diff --git a/docs/_file_8h_source.html b/docs/_file_8h_source.html index dea4365..c4c55c4 100644 --- a/docs/_file_8h_source.html +++ b/docs/_file_8h_source.html @@ -83,19 +83,19 @@ $(document).ready(function(){initNavTree('_file_8h_source.html','');});
File.h
-Go to the documentation of this file.
1 //
2 // Created by Konstantin Kukin on 26/12/16.
3 //
4 
5 #ifndef TGBOT_CPP_FILE_H
6 #define TGBOT_CPP_FILE_H
7 
8 #include <string>
9 #include <memory>
10 
11 namespace TgBot {
12 
21 class File {
22 
23 public:
24  typedef std::shared_ptr<File> Ptr;
25 
29  std::string fileId;
30 
34  int32_t fileSize;
35 
40  std::string filePath;
41 };
42 
43 }
44 
45 #endif //TGBOT_CPP_FILE_H
std::shared_ptr< File > Ptr
Definition: File.h:24
-
std::string filePath
Definition: File.h:40
- -
int32_t fileSize
Definition: File.h:34
-
Definition: Api.h:46
-
std::string fileId
Definition: File.h:29
+Go to the documentation of this file.
1 //
2 // Created by Konstantin Kukin on 26/12/16.
3 //
4 
5 #ifndef TGBOT_CPP_FILE_H
6 #define TGBOT_CPP_FILE_H
7 
8 #include <string>
9 #include <memory>
10 
11 namespace TgBot {
12 
23 class File {
24 
25 public:
26  typedef std::shared_ptr<File> Ptr;
27 
31  std::string fileId;
32 
36  int32_t fileSize;
37 
43  std::string filePath;
44 };
45 
46 }
47 
48 #endif //TGBOT_CPP_FILE_H
std::shared_ptr< File > Ptr
Definition: File.h:26
+
std::string filePath
Optional. File path.
Definition: File.h:43
+
This object represents a file ready to be downloaded.
Definition: File.h:23
+
int32_t fileSize
Optional. File size, if known.
Definition: File.h:36
+
Definition: Api.h:47
+
std::string fileId
Unique identifier for this file.
Definition: File.h:31