| 696 | } |
| 697 | |
| 698 | Vector<String> Glob::glob(const String &pathname, bool hidden) { |
| 699 | return _glob(pathname, false, false, hidden); |
| 700 | } |
| 701 | |
| 702 | Vector<String> Glob::rglob(const String &pathname, bool hidden) { |
| 703 | return _glob(pathname, true, false, hidden); |
no outgoing calls
no test coverage detected