xref: /haiku/src/kits/locale/NumberFormat.cpp (revision 220d04022750f40f8bac8f01fa551211e28d04f2)
1 #include <NumberFormat.h>
2 #include <NumberFormatImpl.h>
3 
4 // copy constructor
5 BNumberFormat::BNumberFormat(const BNumberFormat &other)
6 	: BFormat(other)
7 {
8 }
9 
10 // destructor
11 BNumberFormat::~BNumberFormat()
12 {
13 }
14 
15 // =
16 BNumberFormat &
17 BNumberFormat::operator=(const BNumberFormat &other)
18 {
19 	BFormat::operator=(other);
20 	return *this;
21 }
22 
23 // constructor
24 BNumberFormat::BNumberFormat()
25 	: BFormat()
26 {
27 }
28 
29