tdesktop/Telegram/SourceFiles/countries/countries_instance.h

46 lines
948 B
C
Raw Normal View History

/*
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
namespace Countries {
2021-08-26 14:53:59 +00:00
struct Info {
QString name;
QString iso2;
QString code;
QString alternativeName;
};
2021-08-26 15:15:49 +00:00
class CountriesInstance final {
public:
using Map = QHash<QString, const Info *>;
2021-08-26 15:22:54 +00:00
CountriesInstance();
[[nodiscard]] const std::vector<Info> &list();
void setList(std::vector<Info> &&infos);
2021-08-26 15:15:49 +00:00
[[nodiscard]] const Map &byCode();
[[nodiscard]] const Map &byISO2();
[[nodiscard]] QString validPhoneCode(QString fullCode);
[[nodiscard]] QString countryNameByISO2(const QString &iso);
[[nodiscard]] QString countryISO2ByPhone(const QString &phone);
private:
2021-08-26 15:22:54 +00:00
std::vector<Info> _list;
2021-08-26 15:15:49 +00:00
Map _byCode;
Map _byISO2;
};
CountriesInstance &Instance();
} // namespace Countries