2019-10-17 20:20:40 +00:00
|
|
|
#pragma once
|
|
|
|
#include <pu/Plutonium>
|
|
|
|
#include "ui/mainPage.hpp"
|
2019-10-18 19:01:51 +00:00
|
|
|
#include "ui/netInstPage.hpp"
|
2019-10-22 22:14:37 +00:00
|
|
|
#include "ui/nspInstPage.hpp"
|
2019-10-17 20:20:40 +00:00
|
|
|
|
|
|
|
namespace inst::ui {
|
|
|
|
class MainApplication : public pu::ui::Application {
|
|
|
|
public:
|
|
|
|
using Application::Application;
|
|
|
|
PU_SMART_CTOR(MainApplication)
|
|
|
|
void OnLoad() override;
|
|
|
|
MainPage::Ref mainPage;
|
2019-10-18 19:01:51 +00:00
|
|
|
netInstPage::Ref netinstPage;
|
2019-10-22 22:14:37 +00:00
|
|
|
nspInstPage::Ref nspinstPage;
|
2019-10-17 20:20:40 +00:00
|
|
|
};
|
|
|
|
}
|