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/app_page.hpp

22 lines
412 B
C++
Raw Normal View History

2020-09-20 02:21:28 +02:00
#pragma once
#include <borealis.hpp>
#include <algorithm>
2021-02-10 17:28:47 +01:00
#include <set>
2020-09-20 02:21:28 +02:00
typedef struct app App;
2020-09-20 02:21:28 +02:00
class AppPage : public brls::AppletFrame
{
private:
brls::List* list;
brls::Label* label;
brls::ListItem* download;
brls::ListItem* listItem;
2020-09-20 02:21:28 +02:00
std::vector<App*> apps;
std::set<std::string> titles;
public:
2021-02-12 23:20:16 +01:00
AppPage(const bool cheatSlips = false);
2020-09-20 02:21:28 +02:00
};