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