Text conversion from HWPML format is implemented

This commit is contained in:
Kirill Polyakov
2025-09-10 13:59:15 +03:00
parent f96dd51403
commit 2ee94c4920
20 changed files with 475 additions and 127 deletions

View File

@ -36,6 +36,14 @@ bool CHWPFile::OpenHWPX(const std::wstring& wsFilePath)
return m_pInternal->Open(wsFilePath, HWP::EHanType::HWPX);
}
bool CHWPFile::OpenHWPML(const std::wstring &wsFilePath)
{
if (nullptr == m_pInternal)
return false;
return m_pInternal->Open(wsFilePath, HWP::EHanType::HWPML);
}
void CHWPFile::Close()
{
if (nullptr != m_pInternal)