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

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

Definition at line 77 of file String.h.

00078 {
00079     std::ostringstream oss;
00080     oss << std::setw(width) << std::setfill(fill) << i;
00081     return oss.str();
00082 }


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