mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-07-11 13:03:11 +08:00
18 lines
389 B
C++
18 lines
389 B
C++
#include "Surface.h"
|
|
|
|
namespace HWP { namespace CHART
|
|
{
|
|
CSurface::CSurface()
|
|
{
|
|
|
|
}
|
|
|
|
bool CSurface::Read(CHWPStream& oStream)
|
|
{
|
|
return oStream.ReadInt(m_nBase) && m_oBrush.Read(oStream) &&
|
|
oStream.ReadInt(m_nColWireframe) && oStream.ReadInt(m_nDisplayType) &&
|
|
oStream.ReadInt(m_nProjection) && oStream.ReadInt(m_nRowWireframe) &&
|
|
m_oWireframePen.Read(oStream);
|
|
}
|
|
}}
|