b2c385c072
-Added a very simple test that shows the API is corrupting memory and ends up crashing -Fixed build of other locale tests git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@35503 a95241bf-73f2-0310-859d-f6bbb57e9c96
24 lines
433 B
C++
24 lines
433 B
C++
#ifndef _B_NUMBER_FORMAT_H_
|
|
#define _B_NUMBER_FORMAT_H_
|
|
|
|
#include <Format.h>
|
|
#include <NumberFormatParameters.h>
|
|
|
|
class BNumberFormatImpl;
|
|
|
|
class BNumberFormat : public BFormat {
|
|
protected:
|
|
BNumberFormat(const BNumberFormat &other);
|
|
~BNumberFormat();
|
|
|
|
BNumberFormat &operator=(const BNumberFormat &other);
|
|
|
|
BNumberFormat();
|
|
|
|
private:
|
|
inline BNumberFormatImpl *NumberFormatImpl() const;
|
|
};
|
|
|
|
|
|
#endif // _B_NUMBER_FORMAT_H_
|