| 67 | }; |
| 68 | |
| 69 | CPhraseFile::CPhraseFile(Translator *pTranslator, const char *file) |
| 70 | { |
| 71 | m_pStringTab = pTranslator->GetStringTable(); |
| 72 | m_pMemory = m_pStringTab->GetMemTable(); |
| 73 | m_LangCount = pTranslator->GetLanguageCount(); |
| 74 | m_File.assign(file); |
| 75 | m_pTranslator = pTranslator; |
| 76 | } |
| 77 | |
| 78 | CPhraseFile::~CPhraseFile() |
| 79 | { |
nothing calls this directly
no test coverage detected