1 #include <IntegerFormatParameters.h>
4 BIntegerFormatParameters::BIntegerFormatParameters(
5 const BIntegerFormatParameters
*parent
)
6 : BNumberFormatParameters(parent
),
12 BIntegerFormatParameters::BIntegerFormatParameters(
13 const BIntegerFormatParameters
&other
)
14 : BNumberFormatParameters(other
),
15 fParent(other
.fParent
)
20 BIntegerFormatParameters::~BIntegerFormatParameters()
24 // SetParentIntegerParameters
26 BIntegerFormatParameters::SetParentIntegerParameters(
27 const BIntegerFormatParameters
*parent
)
30 SetParentNumberParameters(parent
);
33 // ParentIntegerParameters
34 const BIntegerFormatParameters
*
35 BIntegerFormatParameters::ParentIntegerParameters() const
41 BIntegerFormatParameters
&
42 BIntegerFormatParameters::operator=(const BIntegerFormatParameters
&other
)
44 BNumberFormatParameters::operator=(other
);
45 fParent
= other
.fParent
;