mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-07-11 07:23:34 +08:00
18 lines
225 B
C++
18 lines
225 B
C++
#ifndef CHARTREADER_H
|
|
#define CHARTREADER_H
|
|
|
|
#include "../HWPStream.h"
|
|
|
|
namespace HWP { namespace CHART
|
|
{
|
|
class CChartReader
|
|
{
|
|
public:
|
|
CChartReader();
|
|
|
|
bool ReadFromOle(CHWPStream& oOleData);
|
|
};
|
|
}}
|
|
|
|
#endif // CHARTREADER_H
|