#pragma once #include "VcpkgPaths.h" #include "vcpkg_Dependencies.h" #include "vcpkg_Files.h" #include #include namespace vcpkg::Commands::Export::IFW { struct Options { Optional maybe_repository_url; Optional maybe_packages_dir_path; Optional maybe_repository_dir_path; Optional maybe_config_file_path; Optional maybe_installer_file_path; }; void do_export(const std::vector& export_plan, const std::string& export_id, const Options& ifw_options, const VcpkgPaths& paths); }