1 #ifndef CPPGRAM_LOCATION_HPP 2 #define CPPGRAM_LOCATION_HPP 30 Location( Json::Value &json_location )
31 : longitude( json_location[
"longitude"].asFloat() )
32 , latidute( json_location[
"latidute"].asFloat() )
float longitude
Longitude as defined by sender.
Definition: location.hpp:25
A location send by a user.
Definition: location.hpp:19
main namespace for Cppgram
float latidute
Latitude as defined by sender.
Definition: location.hpp:25