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

15 lines
243 B
C++

#include "Location.h"
namespace HWP { namespace CHART
{
CLocation::CLocation()
{
}
bool CLocation::Read(CChartStream& oStream)
{
return oStream.ReadInteger(m_nLocationType) && m_oRect.Read(oStream) && oStream.ReadBoolean(m_bVisible);
}
}}