Files
amnezia-client/client/ui/pages_logic/PageLogicBase.cpp
T

17 lines
335 B
C++
Raw Normal View History

2021-09-07 21:01:56 +03:00
#include "PageLogicBase.h"
2022-08-25 17:35:28 +03:00
#include "ui/uilogic.h"
#include "settings.h"
#include "configurators/vpn_configurator.h"
2021-09-07 21:01:56 +03:00
PageLogicBase::PageLogicBase(UiLogic *logic, QObject *parent):
QObject(parent),
2021-09-08 13:52:36 +03:00
m_pageEnabled{true},
2021-09-07 21:01:56 +03:00
m_uiLogic(logic)
{
2022-08-25 12:47:02 +03:00
m_settings = logic->m_settings;
2022-08-25 17:35:28 +03:00
m_configurator = logic->m_configurator;
2021-09-07 21:01:56 +03:00
}
2021-09-16 16:19:14 +03:00
2022-08-25 12:47:02 +03:00