2013-07-31 07:29:42 -04:00
|
|
|
/*
|
|
|
|
* Reads cty.dat file
|
|
|
|
* Establishes a map between prefixes and their country names
|
|
|
|
* VK3ACF July 2013
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef __COUNTRYDAT_H
|
|
|
|
#define __COUNTRYDAT_H
|
|
|
|
|
2013-08-08 19:51:53 -04:00
|
|
|
|
|
|
|
#include <QString>
|
|
|
|
#include <QStringList>
|
|
|
|
#include <QHash>
|
2013-07-31 07:29:42 -04:00
|
|
|
|
|
|
|
|
|
|
|
class CountryDat
|
|
|
|
{
|
2015-11-17 20:28:12 -05:00
|
|
|
public:
|
|
|
|
void init(const QString filename);
|
|
|
|
void load();
|
|
|
|
QString find(const QString prefix); // return country name or ""
|
|
|
|
QStringList getCountryNames() { return _countryNames; };
|
2013-07-31 07:29:42 -04:00
|
|
|
|
2015-11-17 20:28:12 -05:00
|
|
|
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;
|
2013-07-31 07:29:42 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|