2009-05-01 23:23:59 +04:00
|
|
|
#ifndef _B_INTEGER_FORMAT_PARAMETERS_H_
|
|
|
|
#define _B_INTEGER_FORMAT_PARAMETERS_H_
|
|
|
|
|
|
|
|
#include <NumberFormatParameters.h>
|
|
|
|
|
2009-05-02 01:56:16 +04:00
|
|
|
class BIntegerFormatParameters : public BNumberFormatParameters {
|
2009-05-01 23:23:59 +04:00
|
|
|
public:
|
|
|
|
BIntegerFormatParameters(const BIntegerFormatParameters *parent = NULL);
|
|
|
|
BIntegerFormatParameters(const BIntegerFormatParameters &other);
|
|
|
|
~BIntegerFormatParameters();
|
|
|
|
|
|
|
|
void SetParentIntegerParameters(const BIntegerFormatParameters *parent);
|
|
|
|
const BIntegerFormatParameters *ParentIntegerParameters() const;
|
|
|
|
|
|
|
|
BIntegerFormatParameters &operator=(
|
|
|
|
const BIntegerFormatParameters &other);
|
|
|
|
|
|
|
|
private:
|
|
|
|
const BIntegerFormatParameters *fParent;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // _B_INTEGER_FORMAT_PARAMETERS_H_
|