/* 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 */ #pragma once #include namespace Raw { struct GeoBounds { double minLat = 0.; double minLon = 0.; double maxLat = 0.; double maxLon = 0.; }; [[nodiscard]] const base::flat_map &CountryBounds(); } // namespace Raw