#include #include // copy constructor BNumberFormat::BNumberFormat(const BNumberFormat &other) : BFormat(other) { } // destructor BNumberFormat::~BNumberFormat() { } // = BNumberFormat & BNumberFormat::operator=(const BNumberFormat &other) { BFormat::operator=(other); return *this; } // constructor BNumberFormat::BNumberFormat() : BFormat() { }