mirror of
				https://github.com/saitohirga/WSJT-X.git
				synced 2025-10-31 13:10:19 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			20 lines
		
	
	
		
			385 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			385 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| #ifndef EXCHANGE_VALIDATOR_HPP__
 | |
| #define EXCHANGE_VALIDATOR_HPP__
 | |
| 
 | |
| #include <QValidator>
 | |
| 
 | |
| // ExchangeValidator - QValidator for Field Day and RTTY Roundup exchanges
 | |
| 
 | |
| class ExchangeValidator final
 | |
|   : public QValidator
 | |
| {
 | |
| public:
 | |
|   ExchangeValidator (QObject * parent = nullptr);
 | |
| 
 | |
|   // QValidator implementation
 | |
|   State validate (QString& input, int& length) const override;
 | |
| 
 | |
| };
 | |
| 
 | |
| #endif
 |