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

23 lines
320 B
C++

#ifndef BACKDROP_H
#define BACKDROP_H
#include "Frame.h"
#include "Fill.h"
#include "Shadow.h"
namespace HWP { namespace CHART
{
class CBackdrop : public IChartObject
{
CFrame m_oFrame;
CFill m_oFill;
CShadow m_oShadow;
public:
CBackdrop();
bool Read(CChartStream& oStream) override;
};
}}
#endif // BACKDROP_H