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