LibTgBotPP/include/Telegram/Location.h
2016-04-30 07:18:32 +02:00

19 lines
221 B
C++

#ifndef __TG_LOCATION_H_
#define __TG_LOCATION_H_
#include <json/json.h>
namespace Telegram {
class Location {
public:
Location(Json::Value);
private:
float longitude;
float latitude;
};
}
#endif