aboutsummaryrefslogtreecommitdiff
path: root/bpkg/pkg-update
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2015-09-18 06:59:28 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2015-09-18 06:59:28 +0200
commitcae11509203061e894e6310c35ea50ae818af3a7 (patch)
treee9d38297725b9d8ef4442366432cdee8f9ccf28c /bpkg/pkg-update
parentb18e54a088e84ed31f320d69b904af3f999adb2b (diff)
Implement pkg-update command
Diffstat (limited to 'bpkg/pkg-update')
-rw-r--r--bpkg/pkg-update17
1 files changed, 17 insertions, 0 deletions
diff --git a/bpkg/pkg-update b/bpkg/pkg-update
new file mode 100644
index 0000000..0ff4b0d
--- /dev/null
+++ b/bpkg/pkg-update
@@ -0,0 +1,17 @@
+// file : bpkg/pkg-update -*- C++ -*-
+// copyright : Copyright (c) 2014-2015 Code Synthesis Ltd
+// license : MIT; see accompanying LICENSE file
+
+#ifndef BPKG_PKG_UPDATE
+#define BPKG_PKG_UPDATE
+
+#include <bpkg/types>
+#include <bpkg/pkg-update-options>
+
+namespace bpkg
+{
+ void
+ pkg_update (const pkg_update_options&, cli::scanner& args);
+}
+
+#endif // BPKG_PKG_UPDATE