mirror of
https://github.com/vee1e/MFT-Parser.git
synced 2026-09-02 11:27:38 +00:00
23 lines
348 B
C++
23 lines
348 B
C++
#pragma once
|
|
|
|
#include <vector>
|
|
#include <string>
|
|
#include <memory>
|
|
#include <istream>
|
|
|
|
namespace logfile {
|
|
|
|
/**
|
|
* @brief $LogFile Parser
|
|
*/
|
|
class LogFile {
|
|
public:
|
|
explicit LogFile(std::istream& file_stream);
|
|
};
|
|
|
|
class LogFileParser {
|
|
public:
|
|
static std::unique_ptr<LogFile> load(const std::string& log_path);
|
|
};
|
|
|
|
} // namespace logfile
|