haiku/headers/os/locale/NumberFormat.h

24 lines
471 B
C
Raw Normal View History

#ifndef _B_NUMBER_FORMAT_H_
#define _B_NUMBER_FORMAT_H_
#include <Format.h>
#include <NumberFormatParameters.h>
class BNumberFormatImpl;
class _IMPEXP_LOCALE 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_