diff options
author | Simon Warta <[email protected]> | 2015-07-16 19:42:54 +0200 |
---|---|---|
committer | Simon Warta <[email protected]> | 2015-07-16 19:42:54 +0200 |
commit | cff04b4039ffbb4ee1d7309edb62ce702bb471bc (patch) | |
tree | bae6bc6de24dbdfd732c1734c78aeae566837ece /src/lib/utils/filesystem.h | |
parent | acac09fc411eeb8d52f4565ba50c057298552679 (diff) | |
parent | 748ae07caf2445f7b75f5c96ae674c6de0b0610a (diff) |
Merge pull request #201 from webmaster128/fs
Refactor internal/filesystem.h
Diffstat (limited to 'src/lib/utils/filesystem.h')
-rw-r--r-- | src/lib/utils/filesystem.h | 21 |
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 |