aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib/utils/filesystem.h
diff options
context:
space:
mode:
authorSimon Warta <[email protected]>2015-07-16 17:19:32 +0200
committerSimon Warta <[email protected]>2015-07-16 19:01:37 +0200
commit2ea885ffe9f44fada457b9cc8e169418c57f1bdb (patch)
tree73897ab4cca1050e9c4bb7f57a3ef3508514c6f6 /src/lib/utils/filesystem.h
parentacac09fc411eeb8d52f4565ba50c057298552679 (diff)
Refactor internal/filesystem.h
Closes #198
Diffstat (limited to 'src/lib/utils/filesystem.h')
-rw-r--r--src/lib/utils/filesystem.h20
1 files changed, 20 insertions, 0 deletions
diff --git a/src/lib/utils/filesystem.h b/src/lib/utils/filesystem.h
new file mode 100644
index 000000000..6f9b5196e
--- /dev/null
+++ b/src/lib/utils/filesystem.h
@@ -0,0 +1,20 @@
+/*
+* (C) 2015 Jack Lloyd
+*
+* 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