summaryrefslogtreecommitdiffstats
path: root/src/libs/shared/ClashAvoider.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/libs/shared/ClashAvoider.hpp')
-rw-r--r--src/libs/shared/ClashAvoider.hpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/libs/shared/ClashAvoider.hpp b/src/libs/shared/ClashAvoider.hpp
index f70e839a..3c8a1c9f 100644
--- a/src/libs/shared/ClashAvoider.hpp
+++ b/src/libs/shared/ClashAvoider.hpp
@@ -39,6 +39,8 @@ class ClashAvoider : public CommonInterface
public:
ClashAvoider(Store& store, const Raul::Path& prefix, CommonInterface& target)
: _prefix(prefix), _store(store), _target(target) {}
+
+ void set_target(CommonInterface& target) { _target = target; }
// Bundles
void bundle_begin() { _target.bundle_begin(); }
@@ -79,7 +81,7 @@ public:
const Raul::Atom& value);
private:
- const Raul::Path& map_path(const Raul::Path& in);
+ const Raul::Path map_path(const Raul::Path& in);
const Raul::Path& _prefix;
Store& _store;