mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-07-11 06:22:44 +08:00
28 lines
413 B
C++
28 lines
413 B
C++
#ifndef FILL_H
|
|
#define FILL_H
|
|
|
|
#include "Brush.h"
|
|
#include "Gradient.h"
|
|
#include "VtPicture.h"
|
|
|
|
namespace HWP { namespace CHART
|
|
{
|
|
class CFill : public IChartObject
|
|
{
|
|
CBrush m_oBrush;
|
|
// union
|
|
// {
|
|
// CGradient m_oGradient;
|
|
// CVtPicture m_oPicture;
|
|
// } m_oGradient;
|
|
CHART_INTEGER m_nStyle;
|
|
CVtPicture m_oVtPicture;
|
|
public:
|
|
CFill();
|
|
|
|
bool Read(CChartStream& oStream) override;
|
|
};
|
|
}}
|
|
|
|
#endif // FILL_H
|