xref: /haiku/headers/os/locale/NumberFormat.h (revision 508f54795f39c3e7552d87c95aae9dd8ec6f505b)
1 #ifndef _B_NUMBER_FORMAT_H_
2 #define _B_NUMBER_FORMAT_H_
3 
4 #include <Format.h>
5 #include <NumberFormatParameters.h>
6 
7 class BNumberFormatImpl;
8 
9 class BNumberFormat : public BFormat {
10 	protected:
11 		BNumberFormat(const BNumberFormat &other);
12 		~BNumberFormat();
13 
14 		BNumberFormat &operator=(const BNumberFormat &other);
15 
16 		BNumberFormat();
17 };
18 
19 
20 #endif	// _B_NUMBER_FORMAT_H_
21