1
0
Fork 0
mirror of https://github.com/HamletDuFromage/aio-switch-updater.git synced 2024-11-08 19:41:49 +00:00
AIO-switch-updater/include/app_page.hpp
2021-02-01 17:01:49 +01:00

28 lines
No EOL
516 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"
typedef struct app App;
class AppPage : public brls::AppletFrame
{
private:
brls::List* list;
brls::Label* label;
brls::ListItem* download;
std::vector<App*> apps;
std::set<std::string> titles;
std::vector<brls::ListItem*> items;
public:
AppPage();
};