aboutsummaryrefslogtreecommitdiff
path: root/bpkg/package.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'bpkg/package.hxx')
-rw-r--r--bpkg/package.hxx11
1 files changed, 10 insertions, 1 deletions
diff --git a/bpkg/package.hxx b/bpkg/package.hxx
index 8796036..e811e62 100644
--- a/bpkg/package.hxx
+++ b/bpkg/package.hxx
@@ -847,7 +847,7 @@ namespace bpkg
//
#pragma db member(tests) id_column("") value_column("test_")
- // distributions
+ // distribution_values
//
#pragma db member(distribution_values) id_column("") value_column("dist_")
@@ -888,6 +888,15 @@ namespace bpkg
available_package () = default;
};
+ // The available packages together with the repository fragments they belong
+ // to.
+ //
+ // Note that lazy_shared_ptr is used to also convey the databases the
+ // objects belong to.
+ //
+ using available_packages = vector<pair<shared_ptr<available_package>,
+ lazy_shared_ptr<repository_fragment>>>;
+
#pragma db view object(available_package)
struct available_package_count
{