MCPcopy Create free account
hub / github.com/FirebirdSQL/firebird / TextTypeImpl

Class TextTypeImpl

src/common/IntlUtil.cpp:43–61  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

41namespace
42{
43 struct TextTypeImpl
44 {
45 TextTypeImpl(charset* a_cs, UnicodeUtil::Utf16Collation* a_collation)
46 : cs(a_cs),
47 collation(a_collation)
48 {
49 }
50
51 ~TextTypeImpl()
52 {
53 Firebird::IntlUtil::finiCharset(cs);
54
55 delete cs;
56 delete collation;
57 }
58
59 charset* cs;
60 UnicodeUtil::Utf16Collation* collation;
61 };
62}
63
64

Callers 1

initUnicodeCollationMethod · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected