mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-07-11 07:23:34 +08:00
23 lines
320 B
C++
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
|