Template
1
0

Reorganising further

This commit is contained in:
2025-06-26 01:59:18 +03:00
parent 095dd8ddf9
commit ea8b8c884e
8 changed files with 31 additions and 15 deletions

11
src/Helpers.cpp Normal file
View File

@@ -0,0 +1,11 @@
#include "Helpers.hpp"
#include <fstream>
#include <sstream>
// Should add caching here
std::string Helpers::ReadFile(std::string Path) {
std::ifstream file(Path);
std::stringstream contents;
contents << file.rdbuf();
return contents.str();
}