OpenVpnLogic added
This commit is contained in:
parent
d1ea625435
commit
a6e5cfff8a
12 changed files with 899 additions and 578 deletions
34
client/ui/pages_logic/protocols/ShadowSocksLogic.h
Normal file
34
client/ui/pages_logic/protocols/ShadowSocksLogic.h
Normal file
|
|
@ -0,0 +1,34 @@
|
|||
#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
|
||||
Loading…
Add table
Add a link
Reference in a new issue