aboutsummaryrefslogtreecommitdiff
path: root/bpkg/drop
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2015-10-22 08:23:22 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2015-10-22 08:23:22 +0200
commitfd68f4dd2036c106f047793a1e5656b1ade6fd9d (patch)
treece033c14fd42e8472b0d7467bbefe9f4f59599db /bpkg/drop
parent6fed384f9bdc86fa9bb13d87753d14a886f4f87e (diff)
Add drop command skeleton
Diffstat (limited to 'bpkg/drop')
-rw-r--r--bpkg/drop17
1 files changed, 17 insertions, 0 deletions
diff --git a/bpkg/drop b/bpkg/drop
new file mode 100644
index 0000000..1687c82
--- /dev/null
+++ b/bpkg/drop
@@ -0,0 +1,17 @@
+// file : bpkg/drop -*- C++ -*-
+// copyright : Copyright (c) 2014-2015 Code Synthesis Ltd
+// license : MIT; see accompanying LICENSE file
+
+#ifndef BPKG_DROP
+#define BPKG_DROP
+
+#include <bpkg/types>
+#include <bpkg/drop-options>
+
+namespace bpkg
+{
+ void
+ drop (const drop_options&, cli::scanner& args);
+}
+
+#endif // BPKG_DROP