diff options
author | Karen Arutyunov <karen@codesynthesis.com> | 2018-12-07 23:12:05 +0300 |
---|---|---|
committer | Karen Arutyunov <karen@codesynthesis.com> | 2018-12-11 14:05:48 +0300 |
commit | 294c558d577cd4acb2ee8e94e0dfd6acdb946c6c (patch) | |
tree | 02742141dad6cf91040eb48eca54b718dee8ad55 /mod/mod-build-configs.hxx | |
parent | 7dabb6e931740b2777be5dca53c3cec0b984f0fb (diff) |
Add support for build configuration class inheritance
Diffstat (limited to 'mod/mod-build-configs.hxx')
-rw-r--r-- | mod/mod-build-configs.hxx | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/mod/mod-build-configs.hxx b/mod/mod-build-configs.hxx index 0c57359..754c596 100644 --- a/mod/mod-build-configs.hxx +++ b/mod/mod-build-configs.hxx @@ -8,14 +8,13 @@ #include <libbrep/types.hxx> #include <libbrep/utility.hxx> -#include <libbbot/build-config.hxx> - #include <mod/module.hxx> #include <mod/options.hxx> +#include <mod/build-config-module.hxx> namespace brep { - class build_configs: public handler + class build_configs: public handler, private build_config_module { public: build_configs () = default; @@ -41,7 +40,6 @@ namespace brep private: shared_ptr<options::build_configs> options_; - shared_ptr<const bbot::build_configs> build_conf_; }; } |