2016-09-19 11:50:08 +08:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <unordered_map>
|
|
|
|
|
2017-01-06 06:25:50 +08:00
|
|
|
namespace vcpkg::details
|
2016-09-19 11:50:08 +08:00
|
|
|
{
|
2016-09-27 12:12:04 +08:00
|
|
|
std::string optional_field(const std::unordered_map<std::string, std::string>& fields, const std::string& fieldname);
|
2016-11-03 11:26:52 +08:00
|
|
|
std::string remove_optional_field(std::unordered_map<std::string, std::string>* fields, const std::string& fieldname);
|
2016-09-19 11:50:08 +08:00
|
|
|
|
2016-09-27 12:12:04 +08:00
|
|
|
std::string required_field(const std::unordered_map<std::string, std::string>& fields, const std::string& fieldname);
|
2016-11-03 11:26:52 +08:00
|
|
|
std::string remove_required_field(std::unordered_map<std::string, std::string>* fields, const std::string& fieldname);
|
2016-11-08 09:37:08 +08:00
|
|
|
|
|
|
|
std::string shorten_description(const std::string& desc);
|
2017-01-06 06:25:50 +08:00
|
|
|
}
|