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

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

Definition at line 150 of file StringParser.h.

References mP, and mText.

00151     {
00152         while ((mP != String::npos) && (--nrToFind >= 0))
00153         {
00154             mP = mText.find(toStr, mP);
00155             if ((mP != String::npos) && (nrToFind >= 1))
00156                 mP += toStr.size(); // skip it if looking for more
00157         }
00158     }


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