mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-07-11 14:00:32 +08:00
15 lines
179 B
C++
15 lines
179 B
C++
#include "LRect.h"
|
|
|
|
namespace HWP { namespace CHART
|
|
{
|
|
CLRect::CLRect()
|
|
{
|
|
|
|
}
|
|
|
|
bool CLRect::Read(CChartStream& oStream)
|
|
{
|
|
return m_oMax.Read(oStream) && m_oMin.Read(oStream);
|
|
}
|
|
}}
|