mirror of
				https://github.com/saitohirga/WSJT-X.git
				synced 2025-11-03 21:40:52 -05:00 
			
		
		
		
	git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@8000 ab8295b8-cf94-4d9e-aec4-7959e3be5d79
		
			
				
	
	
		
			25 lines
		
	
	
		
			303 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			25 lines
		
	
	
		
			303 B
		
	
	
	
		
			C++
		
	
	
	
	
	
#ifndef SPLASH_SCREEN_HPP___
 | 
						|
#define SPLASH_SCREEN_HPP___
 | 
						|
 | 
						|
#include <QSplashScreen>
 | 
						|
 | 
						|
#include "pimpl_h.hpp"
 | 
						|
 | 
						|
class SplashScreen final
 | 
						|
  : public QSplashScreen
 | 
						|
{
 | 
						|
  Q_OBJECT
 | 
						|
 | 
						|
public:
 | 
						|
  SplashScreen ();
 | 
						|
  ~SplashScreen ();
 | 
						|
 | 
						|
  Q_SIGNAL void disabled ();
 | 
						|
 | 
						|
private:
 | 
						|
  class impl;
 | 
						|
  pimpl<impl> m_;
 | 
						|
};
 | 
						|
 | 
						|
#endif
 |