diff options
| author | Alexander Karatarakis <alkarata@microsoft.com> | 2016-09-18 20:50:08 -0700 |
|---|---|---|
| committer | Alexander Karatarakis <alkarata@microsoft.com> | 2016-09-18 20:54:03 -0700 |
| commit | ccca198c1b1730b0241911cb56dc8e3504958b2a (patch) | |
| tree | a2dd9b8b087a09afdcecc5cbb3377bed15127eb2 /toolsrc/include/SourceParagraph.h | |
| download | vcpkg-ccca198c1b1730b0241911cb56dc8e3504958b2a.tar.gz vcpkg-ccca198c1b1730b0241911cb56dc8e3504958b2a.zip | |
Initial commit
Diffstat (limited to 'toolsrc/include/SourceParagraph.h')
| -rw-r--r-- | toolsrc/include/SourceParagraph.h | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/toolsrc/include/SourceParagraph.h b/toolsrc/include/SourceParagraph.h new file mode 100644 index 000000000..72dca8324 --- /dev/null +++ b/toolsrc/include/SourceParagraph.h @@ -0,0 +1,20 @@ +#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; + }; +} |
