mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-07-11 08:22:08 +08:00
15 lines
213 B
C++
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);
|
|
}
|
|
}}
|