mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-07-11 03:42:47 +08:00
22 lines
282 B
C++
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
|