mirror of
https://review.haiku-os.org/haiku
synced 2025-01-28 01:04:51 +01:00
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
49 lines
797 B
C++
49 lines
797 B
C++
#ifndef _B_FORMAT_H_
|
|
#define _B_FORMAT_H_
|
|
|
|
#include <FormatParameters.h>
|
|
#include <SupportDefs.h>
|
|
|
|
// types of fields contained in formatted strings
|
|
enum {
|
|
// number format fields
|
|
B_CURRENCY_FIELD,
|
|
B_DECIMAL_SEPARATOR_FIELD,
|
|
B_EXPONENT_FIELD,
|
|
B_EXPONENT_SIGN_FIELD,
|
|
B_EXPONENT_SYMBOL_FIELD,
|
|
B_FRACTION_FIELD,
|
|
B_GROUPING_SEPARATOR_FIELD,
|
|
B_INTEGER_FIELD,
|
|
B_PERCENT_FIELD,
|
|
B_PERMILLE_FIELD,
|
|
B_SIGN_FIELD,
|
|
|
|
// date format fields
|
|
// TODO: ...
|
|
};
|
|
|
|
// structure filled in while formatting
|
|
struct format_field_position {
|
|
uint32 field_type;
|
|
int32 start;
|
|
int32 length;
|
|
};
|
|
|
|
class BFormatImpl;
|
|
|
|
class BFormat {
|
|
protected:
|
|
BFormat(const BFormat &other);
|
|
~BFormat();
|
|
|
|
BFormat &operator=(const BFormat &other);
|
|
|
|
BFormat();
|
|
|
|
protected:
|
|
BFormatImpl *fImpl;
|
|
};
|
|
|
|
#endif // _B_FORMAT_H_
|