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

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

Definition at line 92 of file String.h.

00093 {
00094     std::ostringstream oss;
00095     oss << std::setw(width) << std::setfill(fill) << ull;
00096     return oss.str();
00097 }


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