// file : bpkg/pkg-uninstall -*- C++ -*- // copyright : Copyright (c) 2014-2016 Code Synthesis Ltd // license : MIT; see accompanying LICENSE file #ifndef BPKG_PKG_UNINSTALL #define BPKG_PKG_UNINSTALL #include #include // selected_package #include #include #include namespace bpkg { inline int pkg_uninstall (const pkg_uninstall_options& o, cli::scanner& args) { return pkg_command ("uninstall", o, args); } } #endif // BPKG_PKG_UNINSTALL