mirror of
https://github.com/HamletDuFromage/aio-switch-updater.git
synced 2024-11-08 11:31:43 +00:00
26 lines
No EOL
652 B
C++
26 lines
No EOL
652 B
C++
#pragma once
|
|
|
|
#include <borealis.hpp>
|
|
#include <json.hpp>
|
|
|
|
#include "constants.hpp"
|
|
|
|
class ListDownloadTab : public brls::List
|
|
{
|
|
private:
|
|
brls::ListItem* listItem;
|
|
nlohmann::ordered_json nxlinks;
|
|
std::string currentCheatsVer = "";
|
|
std::string newCheatsVer = "";
|
|
contentType type;
|
|
void createList();
|
|
void createList(contentType type);
|
|
void createCheatSlipItem();
|
|
void creategbatempItem();
|
|
void setDescription();
|
|
void setDescription(contentType type);
|
|
void displayNotFound();
|
|
|
|
public:
|
|
ListDownloadTab(const contentType type, const nlohmann::ordered_json& nxlinks = nlohmann::ordered_json::object());
|
|
}; |