mirror of
https://github.com/amnezia-vpn/amnezia-client.git
synced 2026-06-23 02:00:20 +07:00
36 lines
477 B
C++
36 lines
477 B
C++
|
|
#ifndef SERVER_VPN_PROTOCOLS_LOGIC_H
|
||
|
|
#define SERVER_VPN_PROTOCOLS_LOGIC_H
|
||
|
|
|
||
|
|
#include "../pages.h"
|
||
|
|
#include "settings.h"
|
||
|
|
|
||
|
|
class UiLogic;
|
||
|
|
|
||
|
|
class ServerVpnProtocolsLogic : public QObject
|
||
|
|
{
|
||
|
|
Q_OBJECT
|
||
|
|
|
||
|
|
public:
|
||
|
|
explicit ServerVpnProtocolsLogic(UiLogic *uiLogic, QObject *parent = nullptr);
|
||
|
|
~ServerVpnProtocolsLogic() = default;
|
||
|
|
|
||
|
|
|
||
|
|
signals:
|
||
|
|
|
||
|
|
|
||
|
|
private:
|
||
|
|
|
||
|
|
|
||
|
|
private slots:
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
private:
|
||
|
|
Settings m_settings;
|
||
|
|
UiLogic *m_uiLogic;
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
};
|
||
|
|
#endif // SERVER_VPN_PROTOCOLS_LOGIC_H
|