Follow c++ naming convention

This commit is contained in:
2025-03-19 11:21:04 +01:00
parent 5f8cabb56a
commit 5b61f0e5d9
11 changed files with 40 additions and 51 deletions
+4 -7
View File
@@ -2,15 +2,12 @@
#include <string>
#include <fstream>
FileReader::FileReader() {};
FileReader::~FileReader() {};
std::string FileReader::GetFile(char *path){
std::ifstream file(path);
string FileReader::getFile(char *path){
ifstream file(path);
std::string line;
string line;
std::getline(file, line);
getline(file, line);
file.close();