vcpkg/toolsrc/include/Paragraphs.h

11 lines
323 B
C
Raw Normal View History

2016-11-08 08:06:36 +08:00
#pragma once
2016-11-30 10:08:53 +08:00
#include "filesystem_fs.h"
2016-11-08 08:06:36 +08:00
#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);
}}