yatbcpp  0.0.1
Yet another Telegram Bot CPP Library
ChatPhoto.h
Go to the documentation of this file.
1 #ifndef YATBCPP_CHATPHOTO_H
2 #define YATBCPP_CHATPHOTO_H
3 
4 #include <string>
5 
6 namespace yatbcpp{
8  class ChatPhoto {
9  public:
10  ChatPhoto(std::string small_file_id, std::string big_file_id);
11 
13 
14  const std::string &getSmall_file_id() const;
15 
16  const std::string &getBig_file_id() const;
17 
18  private:
19  std::string small_file_id;
20  std::string big_file_id;
21  };
22 
23 }
24 
25 #endif //YATBCPP_CHATPHOTO_H
ChatPhoto(std::string small_file_id, std::string big_file_id)
Definition: ChatPhoto.cc:12
std::string big_file_id
Definition: ChatPhoto.h:20
Definition: Bot.h:27
const std::string & getBig_file_id() const
Definition: ChatPhoto.cc:37
const std::string & getSmall_file_id() const
Definition: ChatPhoto.cc:33
std::string small_file_id
Definition: ChatPhoto.h:19