vcpkg/toolsrc/include/vcpkg/commands.owns.h
nicole mazzuca 5e164e3dd2
[vcpkg] Add Forward Declarations (originally by @cngzhnp) (#12985)
Co-authored-by: cngzhnp <cengizhanpasaoglu@gmail.com>
2020-08-19 15:33:15 -07:00

16 lines
424 B
C++

#pragma once
#include <vcpkg/commands.interface.h>
#include <vcpkg/vcpkgcmdarguments.h>
namespace vcpkg::Commands::Owns
{
extern const CommandStructure COMMAND_STRUCTURE;
void perform_and_exit(const VcpkgCmdArguments& args, const VcpkgPaths& paths);
struct OwnsCommand : PathsCommand
{
virtual void perform_and_exit(const VcpkgCmdArguments& args, const VcpkgPaths& paths) const override;
};
}