mirror of
https://github.com/JS8Call-improved/JS8Call-improved
synced 2026-08-13 17:47:36 -04:00
rename remaining files that didn't match their class definitions relocate the explicit UI_Constructor member function to JS8_MainWindow relocate the processBufferedActivity member function to JS8_MainWindow format affected files with LLVM clang-format Set default APRS inbound relay to off Fix layout of General->Networking & Autoreply tab in Settings
26 lines
533 B
C++
26 lines
533 B
C++
/*
|
|
* maintains a list of country names that have been worked
|
|
* VK3ACF July 2013
|
|
*/
|
|
|
|
#ifndef __COUNTRIESWORKDED_H
|
|
#define __COUNTRIESWORKDED_H
|
|
|
|
#include <QHash>
|
|
#include <QList>
|
|
#include <QString>
|
|
#include <QStringList>
|
|
|
|
class CountriesWorked {
|
|
public:
|
|
void init(const QStringList countryNames);
|
|
void setAsWorked(const QString countryName);
|
|
bool getHasWorked(const QString countryName) const;
|
|
qsizetype getWorkedCount() const;
|
|
qsizetype getSize() const;
|
|
|
|
private:
|
|
QHash<QString, bool> _data;
|
|
};
|
|
|
|
#endif
|