diff options
Diffstat (limited to 'toolsrc/include/Paragraphs.h')
| -rw-r--r-- | toolsrc/include/Paragraphs.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/toolsrc/include/Paragraphs.h b/toolsrc/include/Paragraphs.h new file mode 100644 index 000000000..761b49759 --- /dev/null +++ b/toolsrc/include/Paragraphs.h @@ -0,0 +1,10 @@ +#pragma once + +#include "filesystem_fs.h" +#include <unordered_map> + +namespace vcpkg::Paragraphs +{ + std::vector<std::unordered_map<std::string, std::string>> get_paragraphs(const fs::path& control_path); + std::vector<std::unordered_map<std::string, std::string>> parse_paragraphs(const std::string& str); +} |
