yatbcpp
0.0.1
Yet another Telegram Bot CPP Library
Main Page
+
Classes
Class List
Class Index
Class Hierarchy
+
Class Members
+
All
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
+
Functions
a
b
c
d
e
f
g
i
j
k
l
m
n
p
r
s
t
u
v
w
+
Variables
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
Related Functions
+
Files
File List
+
File Members
All
Functions
Macros
•
All
Classes
Namespaces
Files
Functions
Variables
Enumerations
Enumerator
Friends
Macros
src
types
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
18
ChatPhoto::ChatPhoto
(
const
ChatPhoto
&
ChatPhoto
):
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
}
yatbcpp::ChatPhoto
Definition:
ChatPhoto.h:8
yatbcpp::ChatPhoto::ChatPhoto
ChatPhoto(std::string small_file_id, std::string big_file_id)
Definition:
ChatPhoto.cc:12
yatbcpp::ChatPhoto::big_file_id
std::string big_file_id
Definition:
ChatPhoto.h:20
std
yatbcpp
Definition:
Bot.h:27
yatbcpp::ChatPhoto::getBig_file_id
const std::string & getBig_file_id() const
Definition:
ChatPhoto.cc:37
ChatPhoto.h
yatbcpp::ChatPhoto::getSmall_file_id
const std::string & getSmall_file_id() const
Definition:
ChatPhoto.cc:33
yatbcpp::ChatPhoto::small_file_id
std::string small_file_id
Definition:
ChatPhoto.h:19
Generated by
1.8.13