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