13 lines
174 B
C++
13 lines
174 B
C++
#ifndef SPLASHSCREEN_H
|
|
#define SPLASHSCREEN_H
|
|
|
|
#include <QSplashScreen>
|
|
|
|
class SplashScreen : public QSplashScreen
|
|
{
|
|
public:
|
|
SplashScreen();
|
|
};
|
|
|
|
#endif // SPLASHSCREEN_H
|