aboutsummaryrefslogtreecommitdiff
path: root/bpkg/system-package-manager.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'bpkg/system-package-manager.hxx')
-rw-r--r--bpkg/system-package-manager.hxx34
1 files changed, 34 insertions, 0 deletions
diff --git a/bpkg/system-package-manager.hxx b/bpkg/system-package-manager.hxx
new file mode 100644
index 0000000..122b181
--- /dev/null
+++ b/bpkg/system-package-manager.hxx
@@ -0,0 +1,34 @@
+// file : bpkg/system-package-manager.hxx -*- C++ -*-
+// license : MIT; see accompanying LICENSE file
+
+#ifndef BPKG_SYSTEM_PACKAGE_MANAGER_HXX
+#define BPKG_SYSTEM_PACKAGE_MANAGER_HXX
+
+//#include <libbpkg/manifest.hxx> // version
+//#include <libbpkg/package-name.hxx>
+
+#include <bpkg/types.hxx>
+#include <bpkg/utility.hxx>
+
+namespace bpkg
+{
+ // The system package manager interface. Used by both pkg-build (to query
+ // and install system packages) and by pkg-bindist (to build them).
+ //
+ class system_package_manager
+ {
+ public:
+ virtual
+ ~system_package_manager ();
+ };
+
+ // Create a package manager instance corresponding to the specified host
+ // target and optional manager type. If type is empty, return NULL if there
+ // is no support for this platform.
+ //
+ unique_ptr<system_package_manager>
+ make_system_package_manager (const target_triplet&,
+ const string& type);
+}
+
+#endif // BPKG_SYSTEM_PACKAGE_MANAGER_HXX