aboutsummaryrefslogtreecommitdiff
path: root/bpkg/pkg-fetch
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2015-09-15 10:58:17 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2015-09-15 10:58:17 +0200
commit333c5953151d6324d83d279a7ac3c53cd1af54b9 (patch)
treee473c5ca4461afcbdf67d5db42e883a1d76564e9 /bpkg/pkg-fetch
parentd05f9f046565f2d0d4135912103f96f0e66b454f (diff)
Implement pkg-verify, pkg-fetch commands
Diffstat (limited to 'bpkg/pkg-fetch')
-rw-r--r--bpkg/pkg-fetch17
1 files changed, 17 insertions, 0 deletions
diff --git a/bpkg/pkg-fetch b/bpkg/pkg-fetch
new file mode 100644
index 0000000..1f25c82
--- /dev/null
+++ b/bpkg/pkg-fetch
@@ -0,0 +1,17 @@
+// file : bpkg/pkg-fetch -*- C++ -*-
+// copyright : Copyright (c) 2014-2015 Code Synthesis Ltd
+// license : MIT; see accompanying LICENSE file
+
+#ifndef BPKG_PKG_FETCH
+#define BPKG_PKG_FETCH
+
+#include <bpkg/types>
+#include <bpkg/pkg-fetch-options>
+
+namespace bpkg
+{
+ void
+ pkg_fetch (const pkg_fetch_options&, cli::scanner& args);
+}
+
+#endif // BPKG_PKG_FETCH