mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2024-10-31 15:47:10 -04:00
363c469b55
73 messages from other QSOs on frequency should now be ignored rather than being processed. Also some long overdue refactoring and tidying of non-idiomatic C++ code in the logbook directory. git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@8047 ab8295b8-cf94-4d9e-aec4-7959e3be5d79
40 lines
748 B
C++
40 lines
748 B
C++
/*
|
|
* From an ADIF file and cty.dat, get a call's DXCC entity and its worked before status
|
|
* VK3ACF July 2013
|
|
*/
|
|
|
|
#ifndef LOGBOOK_H
|
|
#define LOGBOOK_H
|
|
|
|
|
|
#include <QString>
|
|
#include <QFont>
|
|
|
|
#include "countrydat.h"
|
|
#include "countriesworked.h"
|
|
#include "adif.h"
|
|
|
|
class QDir;
|
|
|
|
class LogBook
|
|
{
|
|
public:
|
|
void init();
|
|
void match(/*in*/ const QString call,
|
|
/*out*/ QString &countryName,
|
|
bool &callWorkedBefore,
|
|
bool &countryWorkedBefore) const;
|
|
void addAsWorked(const QString call, const QString band, const QString mode, const QString date);
|
|
|
|
private:
|
|
CountryDat _countries;
|
|
CountriesWorked _worked;
|
|
ADIF _log;
|
|
|
|
void _setAlreadyWorkedFromLog();
|
|
|
|
};
|
|
|
|
#endif // LOGBOOK_H
|
|
|