vcpkg/toolsrc/include/Paragraphs.h
2016-11-30 13:38:42 -08:00

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);
}}