| 762 | |
| 763 | |
| 764 | bool cEncoder::AllIdentifiersUnique() const |
| 765 | { |
| 766 | TSTRING chars; |
| 767 | for (sack_type::const_iterator atE = m_encodings.begin(); atE != m_encodings.end(); atE++) |
| 768 | { |
| 769 | TCHAR chID = (*atE)->Identifier(); |
| 770 | if (chars.find(chID) == TSTRING::npos) |
| 771 | chars += chID; |
| 772 | else |
| 773 | return false; |
| 774 | } |
| 775 | return true; |
| 776 | } |
| 777 | |
| 778 | |
| 779 | bool cEncoder::AllTestsRunOnEncodedString(const TSTRING& s) const |
nothing calls this directly
no test coverage detected