S_New4/src/logger.h

37 lines
591 B
C
Raw Normal View History

#ifndef LOGGER_H
#define LOGGER_H
2022-03-25 20:50:29 +00:00
#include <iostream>
#include <fstream>
#include <string>
#include <streambuf>
#include <ctime> // std::time, localtime ...
2022-03-25 23:23:20 +00:00
#include "parameterManager.h"
class Logger
{
public:
2022-03-25 23:23:20 +00:00
Logger(std::string logFilePathm);
~Logger();
std::string getFilePath();
std::fstream file;
int logCommandLine(std::string logText);
int logSubLine(std::string line);
std::string getLogText();
int clearFile();
2022-03-25 23:23:20 +00:00
private:
std::string filePath;
int writetoFile(std::string t);
int openFile(std::string path);
};
#endif // LOGGER_H