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

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

Definition at line 45 of file String.h.

00046 {
00047     std::ostringstream oss;
00048     oss << std::setw(width) << std::setfill(fill) << i;
00049     return oss.str();
00050 }


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