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

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

Definition at line 61 of file String.h.

00062 {
00063     std::ostringstream oss;
00064     oss << std::setw(width) << std::setfill(fill) << ul;
00065     return oss.str();
00066 }


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