mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-07-11 06:22:44 +08:00
20 lines
242 B
C++
20 lines
242 B
C++
#ifndef LRECT_H
|
|
#define LRECT_H
|
|
|
|
#include "Coor.h"
|
|
|
|
namespace HWP { namespace CHART
|
|
{
|
|
class CLRect : public IChartObject
|
|
{
|
|
CCoor m_oMax;
|
|
CCoor m_oMin;
|
|
public:
|
|
CLRect();
|
|
|
|
bool Read(CChartStream& oStream) override;
|
|
};
|
|
}}
|
|
|
|
#endif // LRECT_H
|