aboutsummaryrefslogtreecommitdiff
path: root/src/support/filesystem_context.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/support/filesystem_context.h')
-rw-r--r--src/support/filesystem_context.h20
1 files changed, 14 insertions, 6 deletions
diff --git a/src/support/filesystem_context.h b/src/support/filesystem_context.h
index 6322da6..1f574de 100644
--- a/src/support/filesystem_context.h
+++ b/src/support/filesystem_context.h
@@ -21,12 +21,20 @@ class FilesystemContext {
boost::filesystem::path resolve(const std::string&) const;
boost::filesystem::path resolve(const xalan::XalanDOMString&) const;
- void iterate(const boost::filesystem::path&,
- std::function<void(const boost::filesystem::path&)>) const;
- void iterate(const std::string&,
- std::function<void(const boost::filesystem::path&)>) const;
- void iterate(const xalan::XalanDOMString&,
- std::function<void(const boost::filesystem::path&)>) const;
+ void iterate(
+ const std::string&,
+ const std::function<void(const boost::filesystem::path&)>&
+ ) const;
+
+ void iterate(
+ const xalan::XalanDOMString&,
+ const std::function<void(const boost::filesystem::path&)>&
+ ) const;
+
+ void iterate(
+ const boost::filesystem::path&,
+ const std::function<void(const boost::filesystem::path&)>&
+ ) const;
private:
const boost::filesystem::path path_;