1 #include <Format.h> 2 #include <FormatImpl.h> 3 4 // copy constructor 5 BFormat::BFormat(const BFormat &other) 6 { 7 } 8 9 // destructor 10 BFormat::~BFormat() 11 { 12 } 13 14 // = 15 BFormat & 16 BFormat::operator=(const BFormat &other) 17 { 18 return *this; 19 } 20 21 // constructor 22 BFormat::BFormat() 23 { 24 } 25 26