From d4900d85f7a5d791f89821713d02d3dd19361044 Mon Sep 17 00:00:00 2001 From: Karen Arutyunov Date: Thu, 22 Feb 2024 11:17:25 +0300 Subject: Add support for tenant-associated service notifications --- mod/mod-build-result.hxx | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'mod/mod-build-result.hxx') diff --git a/mod/mod-build-result.hxx b/mod/mod-build-result.hxx index 87ef1f2..96449d5 100644 --- a/mod/mod-build-result.hxx +++ b/mod/mod-build-result.hxx @@ -8,6 +8,7 @@ #include #include +#include #include namespace brep @@ -15,13 +16,13 @@ namespace brep class build_result: public build_result_module { public: - build_result () = default; + explicit + build_result (const tenant_service_map&); // Create a shallow copy (handling instance) if initialized and a deep // copy (context exemplar) otherwise. // - explicit - build_result (const build_result&); + build_result (const build_result&, const tenant_service_map&); virtual bool handle (request&, response&); @@ -35,6 +36,7 @@ namespace brep private: shared_ptr options_; + const tenant_service_map& tenant_service_map_; }; } -- cgit v1.1