mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-07-20 22:14:52 +08:00
16 lines
260 B
C++
16 lines
260 B
C++
#include "Frame.h"
|
|
|
|
namespace HWP { namespace CHART
|
|
{
|
|
CFrame::CFrame()
|
|
{
|
|
|
|
}
|
|
|
|
bool CFrame::Read(CHWPStream& oStream)
|
|
{
|
|
return oStream.ReadInt(m_nStyle) && oStream.ReadShort(m_snWidth) &&
|
|
m_oFrameColor.Read(oStream) && m_oSpaceColor.Read(oStream);
|
|
}
|
|
}}
|