mirror of
https://github.com/xiaoyifang/goldendict-ng.git
synced 2024-11-23 20:14:05 +00:00
15 lines
284 B
C++
15 lines
284 B
C++
#ifndef COUNTRY_HH
|
|
#define COUNTRY_HH
|
|
|
|
#include <QString>
|
|
|
|
namespace Country {
|
|
|
|
/// Attempts converting the given country name, in english, to its iso-3166-1
|
|
/// 2-letter code. If fails, empty string is returned.
|
|
QString englishNametoIso2( QString const & );
|
|
|
|
}
|
|
|
|
#endif // COUNTRY_HH
|