mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-07-16 00:59:02 +08:00
Text conversion from HWPML format is implemented
This commit is contained in:
@ -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)
|
||||
|
||||
Reference in New Issue
Block a user