mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-07-11 06:22:44 +08:00
16 lines
292 B
C++
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);
|
|
}
|
|
}}
|