mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-07-11 14:00:32 +08:00
16 lines
267 B
C++
16 lines
267 B
C++
#include "StatLine.h"
|
|
|
|
namespace HWP { namespace CHART
|
|
{
|
|
CStatLine::CStatLine()
|
|
{
|
|
|
|
}
|
|
|
|
bool CStatLine::Read(CHWPStream& oStream)
|
|
{
|
|
return oStream.ReadInt(m_nFlags) && oStream.ReadInt(m_nStyle) &&
|
|
m_oVtColor.Read(oStream) && oStream.ReadShort(m_snWidth);
|
|
}
|
|
}}
|