Web framework C++  2.0.0
Simple web framework on c++ designed to easily create web pages, etc
log_manager.h
Go to the documentation of this file.
1 #pragma once
2 
3 #include <string>
4 #include <fstream>
5 
11 class LogManager {
12  std::string fileName;
13  bool isOpened;
14 public:
21  LogManager(const char * fileName);
22 
29  void operator<<(const char * data);
30 
37  void operator<<(std::string data);
38 };
void operator<<(const char *data)
LogManager(const char *fileName)
logging info into file
Definition: log_manager.h:11