mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-12-20 04:47:50 +08:00
5e164e3dd2
Co-authored-by: cngzhnp <cengizhanpasaoglu@gmail.com>
16 lines
424 B
C++
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;
|
|
};
|
|
}
|