mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-25 23:11:17 +08:00
11 lines
323 B
C++
11 lines
323 B
C++
#pragma once
|
|
|
|
#include "filesystem_fs.h"
|
|
#include <unordered_map>
|
|
|
|
namespace vcpkg { namespace 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);
|
|
}}
|