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