WSJT-X/logbook/countriesworked.h
Bill Somerville 8215f3412b Priorities for decoded message highlighting and new worked before internal database
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.
2018-10-25 00:00:19 +01:00

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