mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2024-11-04 16:31:17 -05:00
8215f3412b
Settings option to highlight not worked before entities/grids/calls by mode. Fix issues with highlighting decodes and generally refactor the internal workings of ADIF and QSO recording for worked before detection.
25 lines
438 B
C++
25 lines
438 B
C++
#ifndef COUNTRIES_WORKDED_H_
|
|
#define COUNTRIES_WORKDED_H_
|
|
|
|
#include <QString>
|
|
|
|
#include "pimpl_h.hpp"
|
|
|
|
class QStringList;
|
|
|
|
class CountriesWorked final
|
|
{
|
|
public:
|
|
explicit CountriesWorked (QStringList const& countryNames);
|
|
~CountriesWorked ();
|
|
|
|
void add (QString const& country, QString const& band);
|
|
bool contains (QString const& country, QString const& band = QString {}) const;
|
|
|
|
private:
|
|
class impl;
|
|
pimpl<impl> m_;
|
|
};
|
|
|
|
#endif
|