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

22 lines
367 B
C++

#ifndef CHARTOBJECT_H
#define CHARTOBJECT_H
#include "Types.h"
#include "ChartStream.h"
namespace HWP { namespace CHART
{
class IChartObject
{
CHART_LONG m_lId;
CHART_LONG m_lStoredtypeId;
protected:
IChartObject() = default;
public:
virtual bool Read(CChartStream& oStream) = 0;
// virtual ETypes GetType() const = 0;
};
}}
#endif // CHARTOBJECT_H