yatbcpp  0.0.1
Yet another Telegram Bot CPP Library
telegram_type.h
Go to the documentation of this file.
1 //
2 // Created by norbert on 27.08.17.
3 //
4 
5 #ifndef YATBCPP_TELEGRAM_TYPE_H
6 #define YATBCPP_TELEGRAM_TYPE_H
7 
8 #include <string>
9 #include <jsoncpp/json/json.h>
10 
11 namespace yatbcpp{
12  template <typename T> T fromJson(Json::Value Data);
13  template <typename T> T fromString(std::string Data);
14 }
15 
16 
17 #endif //YATBCPP_TELEGRAM_TYPE_H
T fromJson(Json::Value Data)
Definition: Bot.h:27
T fromString(std::string Data)