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

String Impala::MakeString ( CString  src,
const int  width,
const char  fill = ' ' 
) [inline]

Definition at line 122 of file String.h.

00123 {
00124     if (src.length() >= width)
00125         return src.substr(0, width);
00126     String res = src;
00127     for (int i=src.length() ; i<width ; i++)
00128         res.push_back(fill);
00129     return res;
00130 }


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