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-11-17 15:01:06 +00:00
|
|
|
#include "ui/usbInstPage.hpp"
|
2019-10-24 19:53:54 +00:00
|
|
|
#include "ui/instPage.hpp"
|
2019-10-26 20:03:15 +00:00
|
|
|
#include "ui/optionsPage.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-11-17 15:01:06 +00:00
|
|
|
usbInstPage::Ref usbinstPage;
|
2019-10-24 19:53:54 +00:00
|
|
|
instPage::Ref instpage;
|
2019-10-26 20:03:15 +00:00
|
|
|
optionsPage::Ref optionspage;
|
2019-10-17 20:20:40 +00:00
|
|
|
};
|
|
|
|
}
|