feat: reorganize source code + cleanup

This commit is contained in:
2025-10-01 16:15:19 +02:00
parent fec93b098b
commit 2b0494a23d
21 changed files with 183 additions and 610 deletions

15
include/IO/file_manager.h Normal file
View File

@ -0,0 +1,15 @@
#ifndef FILE_MANAGER_H
#define FILE_MANAGER_H
#include <string>
class FileManager
{
public:
FileManager();
~FileManager();
static std::string read(const std::string &filename);
};
#endif // FILE_MANAGER_H