mirror of
https://github.com/redstrate/Astra.git
synced 2025-04-24 21:37:46 +00:00
16 lines
340 B
C++
16 lines
340 B
C++
#pragma once
|
|
|
|
#include "virtualdialog.h"
|
|
|
|
class LauncherCore;
|
|
class LauncherWindow;
|
|
struct ProfileSettings;
|
|
|
|
class AutoLoginWindow : public VirtualDialog {
|
|
Q_OBJECT
|
|
public:
|
|
AutoLoginWindow(DesktopInterface& interface, ProfileSettings& settings, LauncherCore& core, QWidget* parent = nullptr);
|
|
|
|
signals:
|
|
void loginCanceled();
|
|
};
|