Files
Yajbir Singh f1b860b25c
Some checks failed
check / markdownlint (push) Has been cancelled
check / spellchecker (push) Has been cancelled
updated
2025-12-11 19:03:17 +05:30

28 lines
452 B
C++

#ifndef OLECONVERTER_H
#define OLECONVERTER_H
#include "../HWPStream.h"
namespace HWP
{
class COleConverter
{
unsigned int m_unCountCharts;
std::wstring m_wsTempDir;
void CreateChartData(const std::wstring& wsChartData);
public:
COleConverter();
void Clear();
unsigned int GetChartsCount() const;
void SetTempDir(const std::wstring& wsTempDir);
void CreateChart(CHWPStream& oOleStream);
void CreateRels();
};
}
#endif // OLECONVERTER_H