summaryrefslogtreecommitdiffhomepage
path: root/MakefileReader.h
diff options
context:
space:
mode:
Diffstat (limited to 'MakefileReader.h')
-rw-r--r--MakefileReader.h15
1 files changed, 15 insertions, 0 deletions
diff --git a/MakefileReader.h b/MakefileReader.h
new file mode 100644
index 0000000..7ad63c2
--- /dev/null
+++ b/MakefileReader.h
@@ -0,0 +1,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;
+};
+
+