xref: /haiku/headers/os/locale/NumberFormat.h (revision 5e96d7d537fbec23bad4ae9b4c8e7b02e769f0c6)
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