2024-07-04 12:18:30 +04:00
|
|
|
/*
|
|
|
|
This file is part of Telegram Desktop,
|
|
|
|
the official desktop application for the Telegram messaging service.
|
|
|
|
|
|
|
|
For license and copyright information please follow this link:
|
|
|
|
https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
|
|
|
|
*/
|
|
|
|
#include "platform/linux/current_geo_location_linux.h"
|
|
|
|
|
|
|
|
#include "core/current_geo_location.h"
|
|
|
|
|
|
|
|
namespace Platform {
|
|
|
|
|
|
|
|
void ResolveCurrentExactLocation(Fn<void(Core::GeoLocation)> callback) {
|
|
|
|
callback({});
|
|
|
|
}
|
2024-07-07 21:01:26 +04:00
|
|
|
void ResolveLocationAddress(
|
|
|
|
const Core::GeoLocation &location,
|
2024-07-11 16:31:33 +02:00
|
|
|
const QString &language,
|
2024-07-07 21:01:26 +04:00
|
|
|
Fn<void(Core::GeoAddress)> callback) {
|
|
|
|
callback({});
|
|
|
|
}
|
2024-07-04 12:18:30 +04:00
|
|
|
|
|
|
|
} // namespace Platform
|