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

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

Definition at line 109 of file String.h.

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


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