1
0
Fork 0
mirror of https://github.com/HamletDuFromage/aio-switch-updater.git synced 2024-09-20 05:53:38 +01:00
AIO-switch-updater/include/exclude_page.hpp
2021-02-10 17:28:47 +01:00

21 lines
436 B
C++

#pragma once
#include <borealis.hpp>
#include <tuple>
#include <set>
typedef struct app App;
class ExcludePage : public brls::AppletFrame
{
private:
brls::List* list;
brls::Label* label;
brls::ListItem* save;
std::vector<App*> apps;
std::set<std::string> titles;
std::tuple<std::vector<brls::ToggleListItem*>, std::vector<std::string>> items;
public:
ExcludePage();
};