mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-07-11 10:07:28 +08:00
22 lines
367 B
C++
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
|