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

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

Definition at line 29 of file String.h.

00030 {
00031     std::ostringstream oss;
00032     oss << std::setw(width) << std::setfill(fill) << i;
00033     return oss.str();
00034 }


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