mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-01-28 03:57:31 -03:00
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
|