Botan  1.11.15
src/lib/utils/fs.h
Go to the documentation of this file.
00001 /*
00002 * (C) 2015 Jack Lloyd
00003 *
00004 * Botan is released under the Simplified BSD License (see license.txt)
00005 */
00006 
00007 #ifndef BOTAN_UTIL_FS_H__
00008 #define BOTAN_UTIL_FS_H__
00009 
00010 #include <botan/types.h>
00011 #include <vector>
00012 #include <string>
00013 
00014 namespace Botan {
00015 
00016 BOTAN_DLL std::vector<std::string>
00017 list_all_readable_files_in_or_under(const std::string& dir);
00018 
00019 }
00020 
00021 #endif