cemu-vcpkg/toolsrc/include/vcpkg/export.chocolatey.h
nicole mazzuca 6a41626eaf
[vcpkg] Format the C++ in CI (#11655)
* [vcpkg] Format the C++ in the CI

* format the C++

* CR
2020-07-06 16:45:34 -07:00

20 lines
470 B
C++

#pragma once
#include <vector>
#include <vcpkg/dependencies.h>
#include <vcpkg/vcpkgpaths.h>
namespace vcpkg::Export::Chocolatey
{
struct Options
{
Optional<std::string> maybe_maintainer;
Optional<std::string> maybe_version_suffix;
};
void do_export(const std::vector<Dependencies::ExportPlanAction>& export_plan,
const VcpkgPaths& paths,
const Options& chocolatey_options);
}