From 2319d01e262b705716e19474865f555f3ca81a7d Mon Sep 17 00:00:00 2001 From: Karen Arutyunov Date: Mon, 1 May 2017 13:50:13 +0300 Subject: Add hxx extension for headers and lib prefix for library dirs --- bpkg/pkg-unpack.hxx | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 bpkg/pkg-unpack.hxx (limited to 'bpkg/pkg-unpack.hxx') diff --git a/bpkg/pkg-unpack.hxx b/bpkg/pkg-unpack.hxx new file mode 100644 index 0000000..39b4e83 --- /dev/null +++ b/bpkg/pkg-unpack.hxx @@ -0,0 +1,37 @@ +// file : bpkg/pkg-unpack.hxx -*- C++ -*- +// copyright : Copyright (c) 2014-2017 Code Synthesis Ltd +// license : MIT; see accompanying LICENSE file + +#ifndef BPKG_PKG_UNPACK_HXX +#define BPKG_PKG_UNPACK_HXX + +#include +#include // transaction, selected_package +#include + +#include + +namespace bpkg +{ + int + pkg_unpack (const pkg_unpack_options&, cli::scanner& args); + + // Unpack the package as a source directory and commit the transaction. + // + shared_ptr + pkg_unpack (const dir_path& configuration, + transaction&, + const dir_path&, + bool replace, + bool purge); + + // Unpack the fetched package and commit the transaction. + // + shared_ptr + pkg_unpack (const common_options&, + const dir_path& configuration, + transaction&, + const string& name); +} + +#endif // BPKG_PKG_UNPACK_HXX -- cgit v1.1