yatbcpp  0.0.1
Yet another Telegram Bot CPP Library
ReplyKeyboardRemove.cc
Go to the documentation of this file.
1 #include <optional>
3 
4 using namespace yatbcpp;
5 using namespace std;
6 
8 // Constructor Section //
10 
12  remove_keyboard(true)
13 {
14 
15 }
16 
18  remove_keyboard(ReplyKeyboardRemove.remove_keyboard)
19 {
20  selective = ReplyKeyboardRemove.selective;
21 }
22 
23 
25 // Setter Section //
27 
28 void ReplyKeyboardRemove::setSelective(const optional<bool> &selective) {
30 }
31 
33 // Getter Section //
35 
37  return remove_keyboard;
38 }
39 
40 const optional<bool> &ReplyKeyboardRemove::getSelective() const {
41  return selective;
42 }
void setSelective(const std::optional< bool > &selective)
std::optional< bool > selective
Definition: Bot.h:27
const std::optional< bool > & getSelective() const