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

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

Definition at line 128 of file StringParser.h.

References mP, and mText.

00129     {
00130         while ((mP != String::npos) && (--nrToFind >= 0))
00131         {
00132             mP = mText.find(str, mP);
00133             if (mP != String::npos)
00134                 mP += str.size();
00135         }
00136     }


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