yatbcpp  0.0.1
Yet another Telegram Bot CPP Library
All Classes Namespaces Files Functions Variables Enumerations Enumerator Friends Macros
ChatPhoto.cc
Go to the documentation of this file.
1 #include <string>
2 #include "types/ChatPhoto.h"
3 
4 
5 using namespace yatbcpp;
6 using namespace std;
7 
9 // Constructor Section //
11 
12 ChatPhoto::ChatPhoto(std::string small_file_id, std::string big_file_id):
13  small_file_id(small_file_id), big_file_id(big_file_id)
14 {
15 
16 }
17 
19  small_file_id(ChatPhoto.small_file_id), big_file_id(ChatPhoto.big_file_id)
20 {
21 
22 }
23 
24 
26 // Setter Section //
28 
30 // Getter Section //
32 
33 const string &ChatPhoto::getSmall_file_id() const {
34  return small_file_id;
35 }
36 
37 const string &ChatPhoto::getBig_file_id() const {
38  return big_file_id;
39 }
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