aboutsummaryrefslogtreecommitdiff
path: root/bpkg/pkg-disfigure
blob: 0e16a402ac3619e6d3f332d299f525df46b2c759 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// file      : bpkg/pkg-disfigure -*- C++ -*-
// copyright : Copyright (c) 2014-2015 Code Synthesis Ltd
// license   : MIT; see accompanying LICENSE file

#ifndef BPKG_PKG_DISFIGURE
#define BPKG_PKG_DISFIGURE

#include <bpkg/types>
#include <bpkg/forward> // transaction, package
#include <bpkg/pkg-disfigure-options>

namespace bpkg
{
  void
  pkg_disfigure (const pkg_disfigure_options&, cli::scanner& args);

  // Disfigure the package, update its state, and commit the
  // transaction.
  //
  void
  pkg_disfigure (const dir_path& configuration,
                 transaction&,
                 const shared_ptr<package>&);
}

#endif // BPKG_PKG_DISFIGURE