/
thomas-king
/
Interpretator
Обзор
Документация
Войти
/
thomas-king
/
Interpretator
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
main
include/lib/FileManager.h
25 строк
341 B
AceRodstin
Initial commit
28 ноя 2022, 12:18
28 ноя 2022, 12:18
796ddaf
Код
Авторство
О чём код?
// // Created by Ace Rodstin on 25 Nov 2022. // #ifndef ACE_FILEMANAGER_H #define ACE_FILEMANAGER_H #include <string> #include <fstream> #include <filesystem> using namespace std; class FileManager { public: void create_file(string path); void write(string str, string path); private: ofstream file; }; #endif //ACE_FILEMANAGER_H