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

17 lines
308 B
C++

#include "VtFont.h"
namespace HWP { namespace CHART
{
CVtFont::CVtFont()
{
}
bool CVtFont::Read(CChartStream& oStream)
{
return m_oColor.Read(oStream) && oStream.ReadInteger(m_nEffects) &&
oStream.ReadString(m_sName) && oStream.ReadSingle(m_snSize) &&
oStream.ReadInteger(m_nStyle);
}
}}