mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-07-11 11:55:36 +08:00
15 lines
181 B
C++
15 lines
181 B
C++
#include "LCoor.h"
|
|
|
|
namespace HWP { namespace CHART
|
|
{
|
|
CLCoor::CLCoor()
|
|
{
|
|
|
|
}
|
|
|
|
bool CLCoor::Read(CHWPStream& oStream)
|
|
{
|
|
return oStream.ReadLong(m_lX) && oStream.ReadLong(m_lY);
|
|
}
|
|
}}
|