mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-07-13 20:23:37 +08:00
15 lines
213 B
C++
15 lines
213 B
C++
#include "Coor3.h"
|
|
|
|
namespace HWP { namespace CHART
|
|
{
|
|
CCoor3::CCoor3()
|
|
{
|
|
|
|
}
|
|
|
|
bool CCoor3::Read(CHWPStream& oStream)
|
|
{
|
|
return oStream.ReadShort(m_snX) && oStream.ReadShort(m_snY) && oStream.ReadShort(m_snZ);
|
|
}
|
|
}}
|