mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-07-11 06:22:44 +08:00
15 lines
173 B
C++
15 lines
173 B
C++
#include "Rect.h"
|
|
|
|
namespace HWP { namespace CHART
|
|
{
|
|
CRect::CRect()
|
|
{
|
|
|
|
}
|
|
|
|
bool CRect::Read(CHWPStream& oStream)
|
|
{
|
|
return m_oMin.Read(oStream) && m_oMax.Read(oStream);
|
|
}
|
|
}}
|