summaryrefslogtreecommitdiff
path: root/include/util/FileUtils.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'include/util/FileUtils.hpp')
-rw-r--r--include/util/FileUtils.hpp11
1 files changed, 11 insertions, 0 deletions
diff --git a/include/util/FileUtils.hpp b/include/util/FileUtils.hpp
new file mode 100644
index 0000000..a9526ec
--- /dev/null
+++ b/include/util/FileUtils.hpp
@@ -0,0 +1,11 @@
+#ifndef __UTIL_FILE_UTILS_H
+#define __UTIL_FILE_UTILS_H
+
+#include <string>
+#include <vector>
+
+#include "util/UtilExportable.hpp"
+
+UTIL_DLL_VISIBLE std::vector<std::string> directory_entries( const std::string &dir, bool absolute = false, bool recursive = false );
+
+#endif