vector<Match> Region::waitAll(Pattern target, int seconds){ vector<Match> matches; matches = findRepeat(target.all(), seconds, Settings::WaitScanRate); return matches; }
vector<Match> Region::findAll(Pattern target) { vector<Match> matches; matches = findRepeat(target.all(), Settings::AutoWaitTimeout, Settings::WaitScanRate); return matches; }
vector<Match> Region::findAllNow(Pattern ptn){ return doFind(ptn.all()); }