Home || Architecture || Video Search || Visual Search || Scripts || Applications || Important Messages || OGL || Src

void Impala::Util::StringParser::Advance ( char  toChar,
int  nrToFind = 1 
) [inline]

Definition at line 139 of file StringParser.h.

References mP, and mText.

Referenced by Impala::Core::Trec::SearchResult::Load().

00140     {
00141         while ((mP != String::npos) && (--nrToFind >= 0))
00142         {
00143             mP = mText.find(toChar, mP);
00144             if ((mP != String::npos) && (nrToFind >= 1))
00145                 mP++; // skip it if looking for more
00146         }
00147     }


Generated on Fri Mar 19 11:41:20 2010 for ImpalaSrc by  doxygen 1.5.1