mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-07-11 14:00:32 +08:00
21 lines
284 B
C++
21 lines
284 B
C++
#pragma once
|
|
|
|
#include "Serializer.h"
|
|
|
|
namespace XLS
|
|
{;
|
|
|
|
|
|
class XLSSerializer : public Serializer
|
|
{
|
|
public:
|
|
virtual const bool read(Document& doc, const _bstr_t& from);
|
|
virtual const bool write(const Document& doc, const _bstr_t& to);
|
|
};
|
|
|
|
|
|
|
|
|
|
} // namespace XLS
|
|
|