Files
core/HwpFile/HwpDoc/Chart/Wall.cpp
2025-12-25 03:36:19 +03:00

15 lines
207 B
C++

#include "Wall.h"
namespace HWP { namespace CHART
{
CWall::CWall()
{
}
bool CWall::Read(CHWPStream& oStream)
{
return m_oBrush.Read(oStream) && m_oPen.Read(oStream) && oStream.ReadShort(m_snWidth);
}
}}