mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-07-11 08:22:08 +08:00
15 lines
210 B
C++
15 lines
210 B
C++
#include "Wall.h"
|
|
|
|
namespace HWP { namespace CHART
|
|
{
|
|
CWall::CWall()
|
|
{
|
|
|
|
}
|
|
|
|
bool CWall::Read(CChartStream& oStream)
|
|
{
|
|
return m_oBrush.Read(oStream) && m_oPen.Read(oStream) && oStream.ReadSingle(m_snWidth);
|
|
}
|
|
}}
|