aboutsummaryrefslogtreecommitdiff
path: root/bpkg/pkg-disfigure.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'bpkg/pkg-disfigure.hxx')
-rw-r--r--bpkg/pkg-disfigure.hxx32
1 files changed, 32 insertions, 0 deletions
diff --git a/bpkg/pkg-disfigure.hxx b/bpkg/pkg-disfigure.hxx
new file mode 100644
index 0000000..920fc7c
--- /dev/null
+++ b/bpkg/pkg-disfigure.hxx
@@ -0,0 +1,32 @@
+// file : bpkg/pkg-disfigure.hxx -*- C++ -*-
+// copyright : Copyright (c) 2014-2017 Code Synthesis Ltd
+// license : MIT; see accompanying LICENSE file
+
+#ifndef BPKG_PKG_DISFIGURE_HXX
+#define BPKG_PKG_DISFIGURE_HXX
+
+#include <bpkg/types.hxx>
+#include <bpkg/forward.hxx> // transaction, selected_package
+#include <bpkg/utility.hxx>
+
+#include <bpkg/pkg-disfigure-options.hxx>
+
+namespace bpkg
+{
+ int
+ pkg_disfigure (const pkg_disfigure_options&, cli::scanner& args);
+
+ // Disfigure the package, update its state, and commit the
+ // transaction. If the package state is broken, then this
+ // is taken to mean it hasn't been successfully configured
+ // and no clean prior to disfigure is necessary (or possible,
+ // for that matter).
+ //
+ void
+ pkg_disfigure (const dir_path& configuration,
+ const common_options&,
+ transaction&,
+ const shared_ptr<selected_package>&);
+}
+
+#endif // BPKG_PKG_DISFIGURE_HXX