mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-07-11 03:42:47 +08:00
22 lines
297 B
C++
22 lines
297 B
C++
#ifndef SHADOW_H
|
|
#define SHADOW_H
|
|
|
|
#include "Brush.h"
|
|
#include "Coor.h"
|
|
|
|
namespace HWP { namespace CHART
|
|
{
|
|
class CShadow : public IChartObject
|
|
{
|
|
CBrush m_oBrush;
|
|
CCoor m_oOffset;
|
|
CHART_INTEGER m_nStyle;
|
|
public:
|
|
CShadow();
|
|
|
|
bool Read(CChartStream& oStream) override;
|
|
};
|
|
}}
|
|
|
|
#endif // SHADOW_H
|