mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-07-15 07:40:29 +08:00
21 lines
294 B
C++
21 lines
294 B
C++
#pragma once
|
|
|
|
#include "Serializer.h"
|
|
|
|
namespace HTML
|
|
{;
|
|
|
|
|
|
class HTMLSerializer : public Serializer
|
|
{
|
|
public:
|
|
virtual const bool read(Document& doc, const _bstr_t& from);
|
|
virtual const bool write(const Document& doc, const _bstr_t& file_path);
|
|
};
|
|
|
|
|
|
} // namespace XLSX
|
|
|
|
|
|
|