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

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

Definition at line 60 of file String.h.

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


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