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

String Impala::StringHead ( CString  src,
const char  toChar,
const bool  includeChar 
) [inline]

Definition at line 221 of file String.h.

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

00222 {
00223     String::size_type p = src.find(toChar, 0);
00224     if (p == String::npos)
00225         return "";
00226     if (includeChar)
00227         p++;
00228     return src.substr(0, p);
00229 }


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