LibTgBotPP/include/Telegram/Location.h

19 lines
221 B
C
Raw Normal View History

2016-04-29 19:38:14 +02:00
#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