mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-07-11 14:00:32 +08:00
git-svn-id: svn://fileserver/activex/AVS/Sources/TeamlabOffice/trunk/ServerComponents@58816 954022d7-b5bf-4e40-9824-e11837661b57
23 lines
301 B
C++
23 lines
301 B
C++
#pragma once
|
|
|
|
#include <Document/Document.h>
|
|
|
|
//namespace XLS
|
|
//{;
|
|
|
|
class Document;
|
|
|
|
class Serializer
|
|
{
|
|
public:
|
|
virtual const bool read(Document& doc, const _bstr_t& from) = 0;
|
|
virtual const bool write(const Document& doc, const _bstr_t& to) = 0;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
//} // namespace XLS
|
|
|