mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2024-11-04 08:21:17 -05:00
a8491db120
git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@3512 ab8295b8-cf94-4d9e-aec4-7959e3be5d79
27 lines
452 B
C++
27 lines
452 B
C++
/*
|
|
* maintains a list of country names that have been worked
|
|
* VK3ACF July 2013
|
|
*/
|
|
|
|
#ifndef __COUNTRIESWORKDED_H
|
|
#define __COUNTRIESWORKDED_H
|
|
|
|
#include <QtGui>
|
|
|
|
|
|
class CountriesWorked
|
|
{
|
|
public:
|
|
void init(const QStringList countryNames);
|
|
void setAsWorked(const QString countryName);
|
|
bool getHasWorked(const QString countryName);
|
|
int getWorkedCount();
|
|
int getSize();
|
|
|
|
private:
|
|
QHash<QString, bool> _data;
|
|
};
|
|
|
|
#endif
|
|
|