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