mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-07-11 08:22:08 +08:00
21 lines
309 B
C++
21 lines
309 B
C++
#ifndef CHARTOBJECT_H
|
|
#define CHARTOBJECT_H
|
|
|
|
#include "Types.h"
|
|
#include "../Common/Common.h"
|
|
|
|
namespace HWP { namespace CHART
|
|
{
|
|
class IChartObject
|
|
{
|
|
long m_lId;
|
|
long m_lStoredtypeId;
|
|
protected:
|
|
IChartObject() = default;
|
|
public:
|
|
virtual ETypes GetType() const = 0;
|
|
};
|
|
}}
|
|
|
|
#endif // CHARTOBJECT_H
|