LibTgBotPP
 All Classes Namespaces Files Functions Variables Typedefs Macros
Location.h
Go to the documentation of this file.
1 #ifndef __TG_LOCATION_H_
2 #define __TG_LOCATION_H_
3 
4 #include <json/json.h>
5 
6 namespace Telegram {
7 
8  class Location {
9  public:
10  Location(Json::Value);
11 
12  private:
13  float longitude;
14  float latitude;
15  };
16 }
17 
18 #endif
Location(Json::Value)
Definition: Location.cc:3
float longitude
Definition: Location.h:13
Definition: Location.h:8
float latitude
Definition: Location.h:14