cpp_drawing/input_file.hpp
2025-09-26 15:42:44 +02:00

20 lines
268 B
C++

#pragma once
#include <filesystem>
#include <fstream>
#include <memory>
#include <vector>
#include "shapes/group.hpp"
class InputFile
{
public:
InputFile(const std::filesystem::path& path);
shapes::Group Parse();
private:
std::ifstream m_file;
};