mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-07-14 02:37:46 +08:00
git-svn-id: svn://fileserver/activex/AVS/Sources/TeamlabOffice/trunk/ServerComponents@53593 954022d7-b5bf-4e40-9824-e11837661b57
25 lines
408 B
C++
25 lines
408 B
C++
#pragma once
|
|
#ifndef XML_XOBJECT_INCLUDE_H_
|
|
#define XML_XOBJECT_INCLUDE_H_
|
|
|
|
#include "XNode.h"
|
|
|
|
|
|
namespace XML
|
|
{
|
|
class XObject
|
|
{
|
|
public:
|
|
XObject();
|
|
virtual ~XObject();
|
|
|
|
public:
|
|
virtual void fromXML(const XNode& node) = 0;
|
|
virtual const XNode toXML() const = 0;
|
|
|
|
public:
|
|
void this_is_not_xobject_class() const {};
|
|
};
|
|
} // namespace XML
|
|
|
|
#endif // XML_XOBJECT_INCLUDE_H_
|