WSJT-X/logbook/countrydat.h
Bill Somerville e3e99e01d9 Better fix for KG4 call country lookup and worked before status
git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx-1.8@8012 ab8295b8-cf94-4d9e-aec4-7959e3be5d79
2017-08-07 14:29:25 +00:00

36 lines
704 B
C++

/*
* Reads cty.dat file
* Establishes a map between prefixes and their country names
* VK3ACF July 2013
*/
#ifndef __COUNTRYDAT_H
#define __COUNTRYDAT_H
#include <QString>
#include <QStringList>
#include <QHash>
class CountryDat
{
public:
void init(const QString filename);
void load();
QString find(QString prefix); // return country name or ""
QStringList getCountryNames() { return _countryNames; };
private:
QString _extractName(const QString line);
void _removeBrackets(QString &line, const QString a, const QString b);
QStringList _extractPrefix(QString &line, bool &more);
QString _filename;
QStringList _countryNames;
QHash<QString, QString> _data;
};
#endif