mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-07-11 06:22:44 +08:00
17 lines
303 B
C++
17 lines
303 B
C++
#include "VtPicture.h"
|
|
|
|
namespace HWP { namespace CHART
|
|
{
|
|
CVtPicture::CVtPicture()
|
|
{
|
|
|
|
}
|
|
|
|
bool CVtPicture::Read(CHWPStream& oStream)
|
|
{
|
|
return oStream.ReadBool(m_bEmbedded) && oStream.ReadString(m_sFilename, DEFAULT_STRING_CHARACTER) &&
|
|
oStream.ReadInt(m_nMap) && oStream.ReadInt(m_nType);
|
|
}
|
|
|
|
}}
|