aboutsummaryrefslogtreecommitdiff
path: root/mod/mod-build-task.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'mod/mod-build-task.hxx')
-rw-r--r--mod/mod-build-task.hxx11
1 files changed, 6 insertions, 5 deletions
diff --git a/mod/mod-build-task.hxx b/mod/mod-build-task.hxx
index 3721363..d0b3d44 100644
--- a/mod/mod-build-task.hxx
+++ b/mod/mod-build-task.hxx
@@ -1,5 +1,4 @@
// file : mod/mod-build-task.hxx -*- C++ -*-
-// copyright : Copyright (c) 2014-2019 Code Synthesis Ltd
// license : MIT; see accompanying LICENSE file
#ifndef MOD_MOD_BUILD_TASK_HXX
@@ -8,7 +7,8 @@
#include <libbrep/types.hxx>
#include <libbrep/utility.hxx>
-#include <mod/options.hxx>
+#include <mod/module-options.hxx>
+#include <mod/tenant-service.hxx>
#include <mod/database-module.hxx>
#include <mod/build-config-module.hxx>
@@ -17,13 +17,13 @@ namespace brep
class build_task: public database_module, private build_config_module
{
public:
- build_task () = default;
+ explicit
+ build_task (const tenant_service_map&);
// Create a shallow copy (handling instance) if initialized and a deep
// copy (context exemplar) otherwise.
//
- explicit
- build_task (const build_task&);
+ build_task (const build_task&, const tenant_service_map&);
virtual bool
handle (request&, response&);
@@ -37,6 +37,7 @@ namespace brep
private:
shared_ptr<options::build_task> options_;
+ const tenant_service_map& tenant_service_map_;
};
}