1
0
Fork 0
mirror of https://github.com/HamletDuFromage/aio-switch-updater.git synced 2024-09-18 21:13:38 +01:00
AIO-switch-updater/include/download_payload_page.hpp

16 lines
302 B
C++
Raw Permalink Normal View History

#pragma once
2021-02-10 16:28:47 +00:00
#include <borealis.hpp>
2021-09-15 16:23:37 +01:00
#include <json.hpp>
class DownloadPayloadPage : public brls::AppletFrame
{
2021-09-11 14:48:13 +01:00
private:
brls::Label* label;
brls::Label* notFound;
brls::List* list;
brls::ListItem* listItem;
2021-09-11 14:48:13 +01:00
public:
2021-09-15 16:23:37 +01:00
DownloadPayloadPage(const nlohmann::ordered_json& payloads);
};