goldendict-ng/src/country.hh
2023-04-17 17:17:36 -04:00

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