1
0
Fork 0
mirror of https://github.com/HamletDuFromage/aio-switch-updater.git synced 2024-11-09 12:01:44 +00:00
AIO-switch-updater/include/app_page.hpp

29 lines
No EOL
565 B
C++

#pragma once
#include <borealis.hpp>
#include <switch.h>
#include "utils.hpp"
#include <filesystem>
#include <fstream>
#include <algorithm>
#include "worker_page.hpp"
#include "confirm_page.hpp"
#include "download_cheats_page.hpp"
typedef struct app App;
class AppPage : public brls::AppletFrame
{
private:
brls::List* list;
brls::Label* label;
brls::ListItem* download;
brls::ListItem* listItem;
std::vector<App*> apps;
std::set<std::string> titles;
public:
AppPage(bool cheatSlips = false);
};