mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-12-16 16:39:01 +08:00
21 lines
403 B
C
21 lines
403 B
C
|
#pragma once
|
||
|
|
||
|
#include <vector>
|
||
|
#include <unordered_map>
|
||
|
|
||
|
namespace vcpkg
|
||
|
{
|
||
|
struct SourceParagraph
|
||
|
{
|
||
|
SourceParagraph();
|
||
|
|
||
|
explicit SourceParagraph(const std::unordered_map<std::string, std::string>& fields);
|
||
|
|
||
|
std::string name;
|
||
|
std::string version;
|
||
|
std::string description;
|
||
|
std::string maintainer;
|
||
|
std::vector<std::string> depends;
|
||
|
};
|
||
|
}
|