finish refactor, add docs and CI
CI / Build NRO (push) Failing after 7s
CI / Format check (push) Successful in 38s
CI / Layering check (push) Successful in 3s
CI / Upload release asset (push) Has been skipped

This commit is contained in:
2026-04-27 01:49:41 +03:00
parent dc65a4c8a9
commit a76e06ba4d
47 changed files with 1972 additions and 1470 deletions
+4 -4
View File
@@ -28,16 +28,17 @@
#include <dirent.h>
#include <errno.h>
#include <string>
#include <switch.h>
#include <vector>
#include <switch.h>
struct DirectoryEntry {
std::string name;
bool directory;
};
class Directory {
public:
public:
Directory(const std::string& root);
~Directory() = default;
@@ -47,9 +48,8 @@ public:
bool good(void);
size_t size(void);
private:
private:
std::vector<struct DirectoryEntry> mList;
Result mError;
bool mGood;
};