mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-07-11 11:55:36 +08:00
15 lines
234 B
C++
15 lines
234 B
C++
#include "Location.h"
|
|
|
|
namespace HWP { namespace CHART
|
|
{
|
|
CLocation::CLocation()
|
|
{
|
|
|
|
}
|
|
|
|
bool CLocation::Read(CHWPStream& oStream)
|
|
{
|
|
return oStream.ReadInt(m_nLocationType) && m_oRect.Read(oStream) && oStream.ReadBool(m_bVisible);
|
|
}
|
|
}}
|