You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
installer-prompt/src/backgroundscreen.h

16 lines
294 B

#ifndef BACKGROUNDSCREEN_H
#define BACKGROUNDSCREEN_H
#include <QWidget>
class BackgroundScreen : public QWidget {
Q_OBJECT
public:
explicit BackgroundScreen(QWidget *parent = nullptr);
virtual ~BackgroundScreen();
void activateBackground();
};
#endif // BACKGROUNDSCREEN_H