Files
amnezia-client/client/ui/pages_logic/WizardLogic.h
T

36 lines
399 B
C++
Raw Normal View History

2021-09-03 20:17:13 +03:00
#ifndef WIZARD_LOGIC_H
#define WIZARD_LOGIC_H
#include "../pages.h"
#include "settings.h"
class UiLogic;
class WizardLogic : public QObject
{
Q_OBJECT
public:
explicit WizardLogic(UiLogic *uiLogic, QObject *parent = nullptr);
~WizardLogic() = default;
signals:
private:
private slots:
private:
Settings m_settings;
UiLogic *m_uiLogic;
};
#endif // WIZARD_LOGIC_H