9 #include "wvglobdiriter.h"
13 bool _recurse,
bool _skip_mounts,
size_t sizeof_stat )
14 :
WvDirIter(dirname, _recurse, _skip_mounts, sizeof_stat), glob(NULL)
18 glob =
new WvGlob(glob_str);
27 WvGlobDirIter::~WvGlobDirIter()
29 if (glob)
delete glob;
32 bool WvGlobDirIter::next()
38 result = WvDirIter::next();
39 }
while (result && glob && !glob->
match(ptr()->relname));
A WvFastString acts exactly like a WvString, but can take (const char *) strings without needing to a...
bool isnull() const
returns true if this string is null
bool match(WvStringParm string, WVREGEX_REGS_DECL) const
Match a given string against the compiled regular expression.
WvGlob()
Construct an empty glob object.