yatbcpp  0.0.1
Yet another Telegram Bot CPP Library
InlineQueryResult.cc
Go to the documentation of this file.
2 
3 using namespace yatbcpp;
4 
5 InlineQueryResult::InlineQueryResult(std::string type,std::string id):
6  type(type), id(id)
7 {
8 
9 }
10 
12  type(InlineQueryResult.type), id(InlineQueryResult.id)
13 {
14 
15 }
16 
17 
18 const std::string &InlineQueryResult::getType() const {
19  return type;
20 }
21 
22 const std::string &InlineQueryResult::getId() const {
23  return id;
24 }
const std::string & getType() const
InlineQueryResult(std::string type, std::string id)
Definition: Bot.h:27
const std::string & getId() const