mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-07-11 10:59:17 +08:00
16 lines
311 B
C++
16 lines
311 B
C++
#include "ContourGradient.h"
|
|
|
|
namespace HWP { namespace CHART
|
|
{
|
|
CContourGradient::CContourGradient()
|
|
{
|
|
|
|
}
|
|
|
|
bool CContourGradient::Read(CChartStream& oStream)
|
|
{
|
|
return m_oFromBrushColor.Read(oStream) && m_oToBrushColor.Read(oStream) &&
|
|
m_oFromPenColor.Read(oStream) && m_oToPenColor.Read(oStream);
|
|
}
|
|
}}
|