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

15 lines
203 B
C++

#include "Weighting.h"
namespace HWP { namespace CHART
{
CWeighting::CWeighting()
{
}
bool CWeighting::Read(CHWPStream& oStream)
{
return oStream.ReadInt(m_nBasis) && oStream.ReadInt(m_nStyle);
}
}}