maybe...
This commit is contained in:
@@ -14,6 +14,8 @@ namespace anm2ed::util::filesystem
|
||||
|
||||
std::filesystem::path path_lower_case_backslash_handle(const std::filesystem::path&);
|
||||
|
||||
FILE* open(const std::filesystem::path&, const char*);
|
||||
|
||||
class WorkingDirectory
|
||||
{
|
||||
public:
|
||||
@@ -22,4 +24,14 @@ namespace anm2ed::util::filesystem
|
||||
WorkingDirectory(const std::filesystem::path&, bool = false);
|
||||
~WorkingDirectory();
|
||||
};
|
||||
|
||||
class File
|
||||
{
|
||||
public:
|
||||
FILE* internal{};
|
||||
|
||||
File(const std::filesystem::path&, const char*);
|
||||
~File();
|
||||
FILE* get();
|
||||
};
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user