WSJT-X/SplashScreen.hpp
Bill Somerville 1f41aee6bf Add missing MOC generated source include
git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@8000 ab8295b8-cf94-4d9e-aec4-7959e3be5d79
2017-08-04 22:00:20 +00:00

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