Files
QtTelegramBot/types/location.cpp

10 lines
205 B
C++
Raw Permalink Normal View History

2015-12-29 16:44:16 +01:00
#include "location.h"
using namespace Telegram;
Location::Location(QJsonObject location)
{
longitude = location.value("longitude").toDouble();
latitude = location.value("latitude").toDouble();
}