aboutsummaryrefslogtreecommitdiff
path: root/bpkg/fetch
diff options
context:
space:
mode:
Diffstat (limited to 'bpkg/fetch')
-rw-r--r--bpkg/fetch22
1 files changed, 22 insertions, 0 deletions
diff --git a/bpkg/fetch b/bpkg/fetch
new file mode 100644
index 0000000..5290107
--- /dev/null
+++ b/bpkg/fetch
@@ -0,0 +1,22 @@
+// file : bpkg/fetch -*- C++ -*-
+// copyright : Copyright (c) 2014-2015 Code Synthesis Ltd
+// license : MIT; see accompanying LICENSE file
+
+#ifndef BPKG_FETCH
+#define BPKG_FETCH
+
+#include <bpkg/manifest>
+
+#include <bpkg/types>
+#include <bpkg/utility>
+
+namespace bpkg
+{
+ repository_manifests fetch_repositories (const dir_path&);
+ repository_manifests fetch_repositories (const repository_location&);
+
+ package_manifests fetch_packages (const dir_path&);
+ package_manifests fetch_packages (const repository_location&);
+}
+
+#endif // BPKG_FETCH