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