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

15 lines
175 B
C++

#include "Rect.h"
namespace HWP { namespace CHART
{
CRect::CRect()
{
}
bool CRect::Read(CChartStream& oStream)
{
return m_oMin.Read(oStream) && m_oMax.Read(oStream);
}
}}