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

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);
}
}}