blob: 7ad63c28182014f968b33cca1797940691523f95 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#pragma once
#include <filesystem>
#include <boost/property_tree/ptree.hpp>
class MakefileReader
{
public:
MakefileReader();
boost::property_tree::ptree read(const std::filesystem::path& path) const;
};
|