| 34 | } |
| 35 | |
| 36 | TextDict::TextDict(const LexiconPtr& _lexicon) |
| 37 | : maxLength(GetKeyMaxLength(_lexicon)), lexicon(_lexicon) { |
| 38 | assert(lexicon->IsSorted()); |
| 39 | assert(lexicon->IsUnique()); |
| 40 | } |
| 41 | |
| 42 | TextDict::~TextDict() {} |
| 43 |
nothing calls this directly
no test coverage detected