Public Member Functions | |
| BidiContext (unsigned char level, WTF::Unicode::Direction direction, bool override=false, BidiContext *parent=0) | |
| BidiContext constructor. | |
| void | ref () const |
| add ref | |
| void | deref () const |
| deref | |
| BidiContext * | parent () const |
| get parent | |
| unsigned char | level () const |
| get level | |
| WTF::Unicode::Direction | dir () const |
| get direction | |
| bool | override () const |
| get override | |
| OWBAL::BidiContext::BidiContext | ( | unsigned char | level, | |
| WTF::Unicode::Direction | direction, | |||
| bool | override = false, |
|||
| BidiContext * | parent = 0 | |||
| ) |
BidiContext constructor.
| [in] | : | level |
| [in] | : | direction |
| [in] | : | override |
| [in] | : | parent BidiContext *b = new BidiContext(l, d, o, p); |
| void OWBAL::BidiContext::ref | ( | ) | const |
add ref
b->ref();
| void OWBAL::BidiContext::deref | ( | ) | const |
deref
b->deref();
| BidiContext* OWBAL::BidiContext::parent | ( | ) | const |
| unsigned char OWBAL::BidiContext::level | ( | ) | const |
get level
| [out] | : | level unsigned char l = b->level(); |
| WTF::Unicode::Direction OWBAL::BidiContext::dir | ( | ) | const |
| bool OWBAL::BidiContext::override | ( | ) | const |
get override
| [out] | : | status bool o = b->override();
|