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

16 lines
292 B
C++

#include "Attribute.h"
namespace HWP { namespace CHART
{
CAttribute::CAttribute()
{
}
bool CAttribute::Read(CHWPStream& oStream)
{
return m_oBrush.Read(oStream) && m_oPen.Read(oStream) &&
oStream.ReadString(m_sText, DEFAULT_STRING_CHARACTER) && oStream.ReadDouble(m_dValue);
}
}}