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

15 lines
178 B
C++

#include "Contour.h"
namespace HWP { namespace CHART
{
CContour::CContour()
{
}
bool CContour::Read(CChartStream& oStream)
{
return oStream.ReadInteger(m_nDisplayType);
}
}}