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

30 lines
651 B
C++

#pragma once
#include <borealis.hpp>
#include <switch.h>
#include <cstring>
#include "utils.hpp"
#include <filesystem>
#include <fstream>
#include <iostream>
#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::vector<brls::ToggleListItem*> items;
std::tuple<std::vector<brls::ToggleListItem*>, std::vector<std::string>> items;
public:
ExcludePage();
};