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

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

Definition at line 123 of file String.h.

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


Generated on Thu Jan 13 09:13:56 2011 for ImpalaSrc by  doxygen 1.5.1