mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-07-11 06:22:44 +08:00
15 lines
185 B
C++
15 lines
185 B
C++
#include "Bar.h"
|
|
|
|
namespace HWP { namespace CHART
|
|
{
|
|
CBar::CBar()
|
|
{
|
|
|
|
}
|
|
|
|
bool CBar::Read(CHWPStream& oStream)
|
|
{
|
|
return oStream.ReadInt(m_nSides) && oStream.ReadShort(m_snTopRatio);
|
|
}
|
|
}}
|