mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-06 14:54:56 +01:00
Add a variation of PBD::find_files_matching_pattern for convenience
This commit is contained in:
parent
077c09b105
commit
36fd67ab72
2 changed files with 27 additions and 0 deletions
|
|
@ -137,6 +137,15 @@ find_files_matching_pattern (vector<string>& result,
|
|||
|
||||
}
|
||||
|
||||
void
|
||||
find_files_matching_pattern (vector<string>& result,
|
||||
const Searchpath& paths,
|
||||
const string& pattern)
|
||||
{
|
||||
Glib::PatternSpec tmp(pattern);
|
||||
find_files_matching_pattern (result, paths, tmp);
|
||||
}
|
||||
|
||||
void
|
||||
find_matching_files_in_directory (const std::string& directory,
|
||||
const Glib::PatternSpec& pattern,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue