1
0
Fork 0
mirror of https://github.com/HamletDuFromage/aio-switch-updater.git synced 2025-01-31 22:05:00 +00:00
AIO-switch-updater/include/download_payload_page.hpp

16 lines
302 B
C++
Raw Normal View History

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