summaryrefslogtreecommitdiff
path: root/cpp/src/qpid/sys/FileSysDir.h
diff options
context:
space:
mode:
Diffstat (limited to 'cpp/src/qpid/sys/FileSysDir.h')
-rwxr-xr-xcpp/src/qpid/sys/FileSysDir.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/cpp/src/qpid/sys/FileSysDir.h b/cpp/src/qpid/sys/FileSysDir.h
index ffe7823f0a..7432fe39c9 100755
--- a/cpp/src/qpid/sys/FileSysDir.h
+++ b/cpp/src/qpid/sys/FileSysDir.h
@@ -54,6 +54,15 @@ class FileSysDir
void mkdir(void);
+ typedef void Callback(const std::string&);
+
+ /**
+ * Call the Callback function for every regular file in the directory
+ *
+ * @param cb Callback function that receives the full path to the file
+ */
+ void forEachFile(Callback cb) const;
+
std::string getPath () { return dirPath; }
};