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

String Impala::StringTail ( String  src,
char  toChar,
bool  includeChar 
) [inline]

Definition at line 232 of file String.h.

Referenced by Impala::Persistency::Locator::Locator().

00233 {
00234     String::size_type p = src.find(toChar, 0);
00235     if (p == String::npos)
00236         return "";
00237     if (!includeChar)
00238         p++;
00239     return src.substr(p, src.size() - p);
00240 }


Generated on Fri Mar 19 10:35:31 2010 for ImpalaSrc by  doxygen 1.5.1