aboutsummaryrefslogtreecommitdiff
path: root/src/support/filesystem_context.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/support/filesystem_context.cc')
-rw-r--r--src/support/filesystem_context.cc38
1 files changed, 20 insertions, 18 deletions
diff --git a/src/support/filesystem_context.cc b/src/support/filesystem_context.cc
index 8395046..a30bccc 100644
--- a/src/support/filesystem_context.cc
+++ b/src/support/filesystem_context.cc
@@ -29,8 +29,22 @@ boost::filesystem::path FilesystemContext::resolve(
}
void FilesystemContext::iterate(
+ const std::string& path,
+ const std::function<void(const boost::filesystem::path&)>& func
+) const {
+ this->iterate(this->resolve(path), func);
+}
+
+void FilesystemContext::iterate(
+ const xalan::XalanDOMString& path,
+ const std::function<void(const boost::filesystem::path&)>& func
+) const {
+ this->iterate(toString(path), func);
+}
+
+void FilesystemContext::iterate(
const boost::filesystem::path& directory,
- std::function<void(const boost::filesystem::path&)> func
+ const std::function<void(const boost::filesystem::path&)>& func
) const {
std::vector<boost::filesystem::path> directoryItems;
@@ -49,23 +63,11 @@ void FilesystemContext::iterate(
directoryItems.end()
);
- for ( auto&& item : directoryItems ) {
- func(item);
- }
-}
-
-void FilesystemContext::iterate(
- const std::string& path,
- std::function<void(const boost::filesystem::path&)> func
-) const {
- this->iterate(this->resolve(path), func);
-}
-
-void FilesystemContext::iterate(
- const xalan::XalanDOMString& path,
- std::function<void(const boost::filesystem::path&)> func
-) const {
- this->iterate(toString(path), func);
+ std::for_each(
+ directoryItems.begin(),
+ directoryItems.end(),
+ func
+ );
}
}