mirror of
				https://github.com/saitohirga/WSJT-X.git
				synced 2025-10-31 21:10:21 -04:00 
			
		
		
		
	Highlighting for new continent, CQ zone, and ITU zone added. Includes a new class to manage the AD1C cty.dat database in memory.
		
			
				
	
	
		
			41 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			41 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
| #ifndef WORKWED_BEFORE_HPP_
 | |
| #define WORKWED_BEFORE_HPP_
 | |
| 
 | |
| #include <boost/core/noncopyable.hpp>
 | |
| #include "AD1CCty.hpp"
 | |
| #include "pimpl_h.hpp"
 | |
| 
 | |
| class CountryDat;
 | |
| class QString;
 | |
| class QByteArray;
 | |
| 
 | |
| class WorkedBefore final
 | |
|   : private boost::noncopyable
 | |
| {
 | |
| public:
 | |
|   using Continent = AD1CCty::Continent;
 | |
| 
 | |
|   explicit WorkedBefore ();
 | |
|   ~WorkedBefore ();
 | |
| 
 | |
|   QString const& path () const;
 | |
|   AD1CCty const& countries () const;
 | |
|   bool add (QString const& call
 | |
|             , QString const& grid
 | |
|             , QString const& band
 | |
|             , QString const& mode
 | |
|             , QByteArray const& ADIF_record);
 | |
|   bool country_worked (QString const& call, QString const& mode, QString const& band) const;
 | |
|   bool grid_worked (QString const& grid, QString const& mode, QString const& band) const;
 | |
|   bool call_worked (QString const& call, QString const& mode, QString const& band) const;
 | |
|   bool continent_worked (Continent continent, QString const& mode, QString const& band) const;
 | |
|   bool CQ_zone_worked (int CQ_zone, QString const& mode, QString const& band) const;
 | |
|   bool ITU_zone_worked (int ITU_zone, QString const& mode, QString const& band) const;
 | |
| 
 | |
| private:
 | |
|   class impl;
 | |
|   pimpl<impl> m_;
 | |
| };
 | |
| 
 | |
| #endif
 |