mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-07-11 14:00:32 +08:00
16 lines
292 B
C++
16 lines
292 B
C++
#include "Position.h"
|
|
|
|
namespace HWP { namespace CHART
|
|
{
|
|
CPosition::CPosition()
|
|
{
|
|
|
|
}
|
|
|
|
bool CPosition::Read(CChartStream& oStream)
|
|
{
|
|
return oStream.ReadBoolean(m_bExcluded) && oStream.ReadBoolean(m_bHidden) &&
|
|
oStream.ReadInteger(m_nOrder) && oStream.ReadInteger(m_nStackOrder);
|
|
}
|
|
}}
|