1 #ifndef TDEUNICODEINFO_H
2 #define TDEUNICODEINFO_H
4 #include "tdelibs_export.h"
5 #include "tdeunicodedata.h"
9 class TDECORE_EXPORT TDEUnicodeCharInfo
12 explicit TDEUnicodeCharInfo(char32_t ch);
13 TDEUnicodeCharInfo(TQChar ch);
15 char32_t codepoint()
const;
18 const TDEUnicodeData::Category *category()
const;
19 const TDEUnicodeData::Subcategory *subcategory()
const;
22 const char32_t m_codepoint;
23 mutable const TDEUnicodeData::Category *m_category;
24 mutable const TDEUnicodeData::Subcategory *m_subcategory;
27 #endif // TDEUNICODEINFO_H