Files
core/HwpFile/HwpDoc/Chart/View3D.cpp
2025-12-25 03:36:19 +03:00

15 lines
204 B
C++

#include "View3D.h"
namespace HWP { namespace CHART
{
CView3D::CView3D()
{
}
bool CView3D::Read(CHWPStream& oStream)
{
return oStream.ReadShort(m_snElevation) && oStream.ReadShort(m_snRotation);
}
}}