/** @file list6105.cpp */
/** Listing 61-5. Declarations for Formatting Fields */
fmtflags const adjustfield = 0x300;
fmtflags const left        = 0x000;
fmtflags const right       = 0x100;
fmtflags const internal    = 0x200;
fmtflags const floatfield  = 0xC00;
fmtflags const scientific  = 0x400;
fmtflags const fixed       = 0x800;
// general does not have a name; its value is zero
