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

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

Definition at line 44 of file String.h.

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


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