mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2024-11-05 00:41:19 -05:00
56 lines
1.0 KiB
C++
56 lines
1.0 KiB
C++
|
#ifndef AD1C_CTY_HPP_
|
||
|
#define AD1C_CTY_HPP_
|
||
|
|
||
|
#include <boost/core/noncopyable.hpp>
|
||
|
#include <QObject>
|
||
|
#include "pimpl_h.hpp"
|
||
|
|
||
|
//
|
||
|
// AD1CCty - Fast access database of Jim Reisert, AD1C's, cty.dat
|
||
|
// entity and entity override information file.
|
||
|
//
|
||
|
class AD1CCty final
|
||
|
: public QObject
|
||
|
, private boost::noncopyable
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
|
||
|
public:
|
||
|
//
|
||
|
// Continent enumeration
|
||
|
//
|
||
|
enum class Continent {UN, AF, AN, AS, EU, NA, OC, SA};
|
||
|
static Continent continent (QString const& continent_id);
|
||
|
static char const * continent (Continent);
|
||
|
Q_ENUM (Continent)
|
||
|
|
||
|
struct Record
|
||
|
{
|
||
|
explicit Record ();
|
||
|
|
||
|
Continent continent;
|
||
|
int CQ_zone;
|
||
|
int ITU_zone;
|
||
|
QString entity_name;
|
||
|
bool WAE_only;
|
||
|
float latitude;
|
||
|
float longtitude;
|
||
|
int UTC_offset;
|
||
|
QString primary_prefix;
|
||
|
};
|
||
|
|
||
|
explicit AD1CCty ();
|
||
|
~AD1CCty ();
|
||
|
Record lookup (QString const& call) const;
|
||
|
|
||
|
private:
|
||
|
class impl;
|
||
|
pimpl<impl> m_;
|
||
|
};
|
||
|
|
||
|
#if !defined (QT_NO_DEBUG_STREAM)
|
||
|
QDebug operator << (QDebug, AD1CCty::Record const&);
|
||
|
#endif
|
||
|
|
||
|
#endif
|