mirror of
https://review.haiku-os.org/haiku
synced 2025-01-19 21:11:28 +01:00
39 lines
1.1 KiB
C
39 lines
1.1 KiB
C
|
#ifndef _B_INTEGER_FORMAT_IMPL_H_
|
||
|
#define _B_INTEGER_FORMAT_IMPL_H_
|
||
|
|
||
|
#include <NumberFormatImpl.h>
|
||
|
|
||
|
struct format_field_position;
|
||
|
class BIntegerFormatParameters;
|
||
|
class BString;
|
||
|
|
||
|
class _IMPEXP_LOCALE BIntegerFormatImpl : public BNumberFormatImpl {
|
||
|
public:
|
||
|
BIntegerFormatImpl();
|
||
|
virtual ~BIntegerFormatImpl();
|
||
|
|
||
|
// formatting
|
||
|
|
||
|
virtual status_t Format(const BIntegerFormatParameters *parameters,
|
||
|
int64 number, BString *buffer) const = 0;
|
||
|
virtual status_t Format(const BIntegerFormatParameters *parameters,
|
||
|
int64 number, BString *buffer,
|
||
|
format_field_position *positions,
|
||
|
int32 positionCount = 1,
|
||
|
int32 *fieldCount = NULL,
|
||
|
bool allFieldPositions = false) const = 0;
|
||
|
|
||
|
// TODO: ...
|
||
|
|
||
|
virtual BNumberFormatParameters *DefaultNumberFormatParameters();
|
||
|
virtual const BNumberFormatParameters *DefaultNumberFormatParameters()
|
||
|
const;
|
||
|
|
||
|
virtual BIntegerFormatParameters *DefaultIntegerFormatParameters() = 0;
|
||
|
virtual const BIntegerFormatParameters *DefaultIntegerFormatParameters()
|
||
|
const = 0;
|
||
|
};
|
||
|
|
||
|
|
||
|
#endif // _B_INTEGER_FORMAT_IMPL_H_
|