feat: reorganize source code + cleanup
This commit is contained in:
15
include/IO/file_manager.h
Normal file
15
include/IO/file_manager.h
Normal 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
|
Reference in New Issue
Block a user