diff options
| author | isanae <14251494+isanae@users.noreply.github.com> | 2020-07-30 00:58:03 -0400 |
|---|---|---|
| committer | isanae <14251494+isanae@users.noreply.github.com> | 2020-11-03 11:39:06 -0500 |
| commit | 44d9ebaf076ff5be5235b65fe68a8b0699c8cf6f (patch) | |
| tree | b3e1f70c4ea46a9dc69d12bd2bbfacce182dced3 /src/createinstancedialogpages.h | |
| parent | c4df6b8ec98feb34cc9b9785e6d4d0eac6b3f571 (diff) | |
implemented nexus page
Diffstat (limited to 'src/createinstancedialogpages.h')
| -rw-r--r-- | src/createinstancedialogpages.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/createinstancedialogpages.h b/src/createinstancedialogpages.h index 88e49628..412f2d84 100644 --- a/src/createinstancedialogpages.h +++ b/src/createinstancedialogpages.h @@ -9,6 +9,8 @@ #include <QCommandLinkButton> namespace MOBase { class IPluginGame; } +class NexusConnectionUI; + namespace cid { @@ -207,13 +209,15 @@ class NexusPage : public Page { public: NexusPage(CreateInstanceDialog& dlg); + ~NexusPage(); bool ready() const override; bool skip() const override; void activated() override; private: - + std::unique_ptr<NexusConnectionUI> m_connectionUI; + bool m_skip; }; |
