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