// file : bpkg/pkg-uninstall.hxx -*- C++ -*- // copyright : Copyright (c) 2014-2019 Code Synthesis Ltd // license : MIT; see accompanying LICENSE file #ifndef BPKG_PKG_UNINSTALL_HXX #define BPKG_PKG_UNINSTALL_HXX #include #include // selected_package #include #include #include namespace bpkg { inline int pkg_uninstall (const pkg_uninstall_options& o, cli::group_scanner& args) { return pkg_command ("uninstall", o, "" /* cmd_variant */, o.recursive (), o.immediate (), o.all (), false /* package_cwd */, args); } } #endif // BPKG_PKG_UNINSTALL_HXX