mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-07-11 10:07:28 +08:00
15 lines
192 B
C++
15 lines
192 B
C++
#include "Bar.h"
|
|
|
|
namespace HWP { namespace CHART
|
|
{
|
|
CBar::CBar()
|
|
{
|
|
|
|
}
|
|
|
|
bool CBar::Read(CChartStream& oStream)
|
|
{
|
|
return oStream.ReadInteger(m_nSides) && oStream.ReadSingle(m_snTopRatio);
|
|
}
|
|
}}
|