mirror of
https://github.com/HamletDuFromage/aio-switch-updater.git
synced 2024-11-08 11:31:43 +00:00
17 lines
No EOL
334 B
C++
17 lines
No EOL
334 B
C++
#pragma once
|
|
|
|
#include "utils.hpp"
|
|
#include "confirm_page.hpp"
|
|
#include "worker_page.hpp"
|
|
|
|
class DownloadPayloadPage : public brls::AppletFrame
|
|
{
|
|
private:
|
|
brls::Label* label;
|
|
brls::Label* notFound;
|
|
brls::List* list;
|
|
std::vector<brls::ListItem*> items;
|
|
|
|
public:
|
|
DownloadPayloadPage();
|
|
}; |