Files
core/HwpFile/HwpDoc/Chart/LRect.cpp
2025-12-25 03:36:19 +03:00

15 lines
177 B
C++

#include "LRect.h"
namespace HWP { namespace CHART
{
CLRect::CLRect()
{
}
bool CLRect::Read(CHWPStream& oStream)
{
return m_oMax.Read(oStream) && m_oMin.Read(oStream);
}
}}