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

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

Definition at line 108 of file String.h.

00109 {
00110     std::ostringstream oss;
00111     oss << std::setw(width) << std::setfill(fill) << d;
00112     return oss.str();
00113 }


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