| 
 
 | 
 | 
UCharReference is the dynamic counterpart of UChar. It's used when characters retrieved via index from a UString are used in an assignment expression (and therefore can't be treated as being const):
| UString s("hello world"); s[0] = 'H'; | 
If that sounds confusing your best bet is to simply forget about the existance of this class and treat is as being identical to UChar.
| UCharReference&  operator= (UChar c) | operator= | 
Set the referenced character to c.
| UCharReference&  operator= (char c) | operator= | 
Same operator as above except the argument that it takes.
| unsigned short  unicode () | unicode | 
[const]
Returns: Unicode value.
| unsigned char  low () | low | 
[const]
Returns: Lower byte.
| unsigned char  high () | high | 
[const]
Returns: Higher byte.
| UChar  toLower () | toLower | 
[const]
Returns: Character converted to lower case.
| UChar  toUpper () | toUpper | 
[const]
Returns: Character converted to upper case.
| Generated by: caleb on tcdevel on Tue Jan 28 12:54:24 2003, using kdoc $. |