17 lines
327 B
C
17 lines
327 B
C
|
#ifndef SPLASHSCREEN_H
|
||
|
#define SPLASHSCREEN_H
|
||
|
|
||
|
#include <QSplashScreen>
|
||
|
|
||
|
/** class for the splashscreen with information of the running client
|
||
|
*/
|
||
|
class SplashScreen : public QSplashScreen
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
|
||
|
public:
|
||
|
explicit SplashScreen(const QPixmap &pixmap = QPixmap(), Qt::WindowFlags f = 0);
|
||
|
};
|
||
|
|
||
|
#endif // SPLASHSCREEN_H
|