mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-07-11 10:59:17 +08:00
20 lines
237 B
C++
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
|