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

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

Definition at line 28 of file String.h.

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


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