forked from moritzsternemann/QtTelegramBot
10 lines
205 B
C++
10 lines
205 B
C++
#include "location.h"
|
|
|
|
using namespace Telegram;
|
|
|
|
Location::Location(QJsonObject location)
|
|
{
|
|
longitude = location.value("longitude").toDouble();
|
|
latitude = location.value("latitude").toDouble();
|
|
}
|