2024-05-17 15:29:29 -04:00
|
|
|
#pragma once
|
|
|
|
class TextFileFunctions {
|
|
|
|
public:
|
|
|
|
inline static bool fileExistCheck(const std::string& name);
|
|
|
|
static void readTextFile(std::string file);
|
2024-06-18 13:13:26 -04:00
|
|
|
//static std::string printTextOutput(std::string file);
|
|
|
|
static void printTextOutput(std::string file);
|
2024-05-17 15:29:29 -04:00
|
|
|
};
|