goldendict-ng/country.hh
2010-06-13 00:16:35 +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