mirror of
https://github.com/HamletDuFromage/aio-switch-updater.git
synced 2024-11-08 19:41:49 +00:00
27 lines
No EOL
560 B
C++
27 lines
No EOL
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();
|
|
}; |