LibTgBotPP
 All Classes Namespaces Files Functions Variables Typedefs Macros
Location.cc
Go to the documentation of this file.
1 #include "Telegram/Location.h"
2 
3 Telegram::Location::Location(Json::Value json) {
4 
5  this->longitude = json["longitude"].asFloat();
6  this->latitude = json["latitude"].asFloat();
7 }
Location(Json::Value)
Definition: Location.cc:3