mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-07-11 06:22:44 +08:00
15 lines
181 B
C++
15 lines
181 B
C++
#include "Coor.h"
|
|
|
|
namespace HWP { namespace CHART
|
|
{
|
|
CCoor::CCoor()
|
|
{
|
|
|
|
}
|
|
|
|
bool CCoor::Read(CHWPStream& oStream)
|
|
{
|
|
return oStream.ReadShort(m_snX) && oStream.ReadShort(m_snY);
|
|
}
|
|
}}
|