aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib/utils/filesystem.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/utils/filesystem.h')
-rw-r--r--src/lib/utils/filesystem.h21
1 files changed, 21 insertions, 0 deletions
diff --git a/src/lib/utils/filesystem.h b/src/lib/utils/filesystem.h
new file mode 100644
index 000000000..419f94b99
--- /dev/null
+++ b/src/lib/utils/filesystem.h
@@ -0,0 +1,21 @@
+/*
+* (C) 2015 Jack Lloyd
+* (C) 2015 Simon Warta (Kullo GmbH)
+*
+* Botan is released under the Simplified BSD License (see license.txt)
+*/
+
+#ifndef BOTAN_UTIL_FILESYSTEM_H__
+#define BOTAN_UTIL_FILESYSTEM_H__
+
+#include <botan/types.h>
+#include <vector>
+#include <string>
+
+namespace Botan {
+
+BOTAN_DLL std::vector<std::string> get_files_recursive(const std::string& dir);
+
+}
+
+#endif