Botan  2.1.0
Crypto and TLS for C++11
filesystem.h
Go to the documentation of this file.
1 /*
2 * (C) 2015 Jack Lloyd
3 * (C) 2015 Simon Warta (Kullo GmbH)
4 *
5 * Botan is released under the Simplified BSD License (see license.txt)
6 */
7 
8 #ifndef BOTAN_UTIL_FILESYSTEM_H__
9 #define BOTAN_UTIL_FILESYSTEM_H__
10 
11 #include <botan/types.h>
12 #include <vector>
13 #include <string>
14 
15 namespace Botan {
16 
17 BOTAN_DLL std::vector<std::string> get_files_recursive(const std::string& dir);
18 
19 }
20 
21 #endif
Definition: alg_id.cpp:13
std::vector< std::string > get_files_recursive(const std::string &dir)
Definition: filesystem.cpp:110