2009-05-01 23:23:59 +04:00
|
|
|
#ifndef _B_NUMBER_FORMAT_H_
|
|
|
|
#define _B_NUMBER_FORMAT_H_
|
|
|
|
|
|
|
|
#include <Format.h>
|
|
|
|
#include <NumberFormatParameters.h>
|
|
|
|
|
|
|
|
class BNumberFormatImpl;
|
|
|
|
|
2009-05-02 01:56:16 +04:00
|
|
|
class BNumberFormat : public BFormat {
|
2009-05-01 23:23:59 +04:00
|
|
|
protected:
|
|
|
|
BNumberFormat(const BNumberFormat &other);
|
|
|
|
~BNumberFormat();
|
|
|
|
|
|
|
|
BNumberFormat &operator=(const BNumberFormat &other);
|
|
|
|
|
2010-02-17 03:02:50 +03:00
|
|
|
BNumberFormat();
|
2009-05-01 23:23:59 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
#endif // _B_NUMBER_FORMAT_H_
|