1
0
Fork 0
mirror of https://github.com/HamletDuFromage/aio-switch-updater.git synced 2024-09-19 13:33:39 +01:00
AIO-switch-updater/include/exclude_page.hpp
2021-02-01 17:01:49 +01:00

27 lines
560 B
C++

#pragma once
#include <borealis.hpp>
#include <switch.h>
#include "utils.hpp"
#include <filesystem>
#include <fstream>
#include <algorithm>
#include <tuple>
#include <vector>
#include <string>
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();
};