mirror of
https://review.haiku-os.org/haiku
synced 2025-02-02 11:46:25 +01:00
c3ac87e8fc
into their new homes (at least for now, might need some adjustment). git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@30540 a95241bf-73f2-0310-859d-f6bbb57e9c96
23 lines
707 B
C++
23 lines
707 B
C++
#ifndef _B_INTEGER_FORMAT_PARAMETERS_H_
|
|
#define _B_INTEGER_FORMAT_PARAMETERS_H_
|
|
|
|
#include <NumberFormatParameters.h>
|
|
|
|
class _IMPEXP_LOCALE BIntegerFormatParameters : public BNumberFormatParameters {
|
|
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_
|