blob: 22aaefe9889f5a567f87aeb5e792aac08cc62573 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#pragma once
#include <filesystem>
#include <unordered_map>
namespace vcpkg { namespace Paragraphs
{
namespace fs = std::tr2::sys;
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);
}}
|