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

22 lines
282 B
C++

#ifndef WALL_H
#define WALL_H
#include "Brush.h"
#include "Pen.h"
namespace HWP { namespace CHART
{
class CWall : public IChartObject
{
CBrush m_oBrush;
CPen m_oPen;
CHART_SINGLE m_snWidth;
public:
CWall();
bool Read(CChartStream& oStream) override;
};
}}
#endif // WALL_H