yatbcpp  0.0.1
Yet another Telegram Bot CPP Library
getMe.cc
Go to the documentation of this file.
1 
2 
3 
4 #include <jsoncpp/json/json.h>
6 #include "methods/getMe.h"
7 
8 using namespace std;
9 using namespace yatbcpp;
10 
12 // Constructor Section //
14 
15 getMe::getMe() :
16  telegram_methodJSON("getMe")
17 {
18 
19 }
20 
22 // Outgoing Section //
24 
29 Json::Value getMe::toJson(){
30  Json::Value Nada;
31  return Nada;
32 }
33 
34 
35 
Definition: Bot.h:27
Json::Value toJson()
Definition: getMe.cc:29