#ifndef _B_NUMBER_FORMAT_H_ #define _B_NUMBER_FORMAT_H_ #include #include class BNumberFormatImpl; class BNumberFormat : public BFormat { protected: BNumberFormat(const BNumberFormat &other); ~BNumberFormat(); BNumberFormat &operator=(const BNumberFormat &other); BNumberFormat(BNumberFormatImpl *impl); private: inline BNumberFormatImpl *NumberFormatImpl() const; }; #endif // _B_NUMBER_FORMAT_H_