- operator wchar_t() const { return m_value; }
- operator int() const { return m_value; }
- operator long int() const { return m_value; }
-#ifndef wxWCHAR_T_IS_UINT
- operator unsigned int() const { return m_value; }
-#endif
-
- // More conversions needed for other standard functions: uchar is for VC++
- // _mbxxx() ones (to which toxxx/isxxx() are mapped when _MBCS is defined)
- // and some wide character functions take wint_t which happens to be the
- // same as wchar_t for Windows compilers but not for g++ (except for the
- // special Apple version)