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

20 lines
237 B
C++

#ifndef RECT_H
#define RECT_H
#include "Coor.h"
namespace HWP { namespace CHART
{
class CRect : public IChartObject
{
CCoor m_oMin;
CCoor m_oMax;
public:
CRect();
bool Read(CChartStream& oStream) override;
};
}}
#endif // RECT_H