Files
core/HwpFile/HwpDoc/Chart/Shadow.h
Kirill Polyakov ebed729f13 Refactoring
2026-01-19 13:04:45 +03:00

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