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

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

Definition at line 93 of file String.h.

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


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