mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-07-11 14:00:32 +08:00
15 lines
243 B
C++
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);
|
|
}
|
|
}}
|