10 lines
226 B
C++
10 lines
226 B
C++
|
#ifndef _library__directory__hpp__included__
|
||
|
#define _library__directory__hpp__included__
|
||
|
|
||
|
#include <set>
|
||
|
#include <string>
|
||
|
|
||
|
std::set<std::string> enumerate_directory(const std::string& dir, const std::string& match);
|
||
|
|
||
|
#endif
|