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