Files
core/HwpFile/HwpDoc/Chart/Weighting.cpp
Kirill Polyakov ebed729f13 Refactoring
2026-01-19 13:04:45 +03:00

15 lines
213 B
C++

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