mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-07-11 03:42:47 +08:00
22 lines
373 B
C++
22 lines
373 B
C++
#ifndef CONTOURGRADIENT_H
|
|
#define CONTOURGRADIENT_H
|
|
|
|
#include "VtColor.h"
|
|
|
|
namespace HWP { namespace CHART
|
|
{
|
|
class CContourGradient : public IChartObject
|
|
{
|
|
CVtColor m_oFromBrushColor;
|
|
CVtColor m_oToBrushColor;
|
|
CVtColor m_oFromPenColor;
|
|
CVtColor m_oToPenColor;
|
|
public:
|
|
CContourGradient();
|
|
|
|
bool Read(CChartStream& oStream) override;
|
|
};
|
|
}}
|
|
|
|
#endif // CONTOURGRADIENT_H
|