mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-07-11 10:07:28 +08:00
17 lines
325 B
C++
17 lines
325 B
C++
#include "Marker.h"
|
|
|
|
namespace HWP { namespace CHART
|
|
{
|
|
CMarker::CMarker()
|
|
{
|
|
|
|
}
|
|
|
|
bool CMarker::Read(CHWPStream& oStream)
|
|
{
|
|
return m_oFillColor.Read(oStream) && m_oPen.Read(oStream) &&
|
|
oStream.ReadShort(m_snSize) && oStream.ReadInt(m_nStyle) &&
|
|
oStream.ReadBool(m_bVisible) && m_oVtPicture.Read(oStream);
|
|
}
|
|
}}
|