18 lines
245 B
C++
18 lines
245 B
C++
#pragma once
|
|
|
|
#include <filesystem>
|
|
#include <fstream>
|
|
|
|
#include "drawing_context.hpp"
|
|
|
|
class InputFile
|
|
{
|
|
public:
|
|
InputFile(const std::filesystem::path& path);
|
|
|
|
void Parse(DrawingContext& ctx);
|
|
|
|
private:
|
|
std::ifstream m_file;
|
|
};
|