aboutsummaryrefslogtreecommitdiff
path: root/bpkg/pkg-clean
diff options
context:
space:
mode:
Diffstat (limited to 'bpkg/pkg-clean')
-rw-r--r--bpkg/pkg-clean21
1 files changed, 21 insertions, 0 deletions
diff --git a/bpkg/pkg-clean b/bpkg/pkg-clean
new file mode 100644
index 0000000..baed20a
--- /dev/null
+++ b/bpkg/pkg-clean
@@ -0,0 +1,21 @@
+// file : bpkg/pkg-clean -*- C++ -*-
+// copyright : Copyright (c) 2014-2015 Code Synthesis Ltd
+// license : MIT; see accompanying LICENSE file
+
+#ifndef BPKG_PKG_CLEAN
+#define BPKG_PKG_CLEAN
+
+#include <bpkg/types>
+#include <bpkg/pkg-command>
+#include <bpkg/pkg-clean-options>
+
+namespace bpkg
+{
+ inline void
+ pkg_clean (const pkg_clean_options& o, cli::scanner& args)
+ {
+ pkg_command ("clean", o, args);
+ }
+}
+
+#endif // BPKG_PKG_CLEAN