mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-07-19 12:24:53 +08:00
git-svn-id: svn://fileserver/activex/AVS/Sources/TeamlabOffice/trunk/ServerComponents@53593 954022d7-b5bf-4e40-9824-e11837661b57
34 lines
780 B
C++
34 lines
780 B
C++
#pragma once
|
|
#ifndef OOX_SETTINGS_SHAPE_DEFAULTS_INCLUDE_H_
|
|
#define OOX_SETTINGS_SHAPE_DEFAULTS_INCLUDE_H_
|
|
|
|
#include "./../WritingElement.h"
|
|
#include <string>
|
|
#include "ShapeLayout.h"
|
|
#include "ShapeDefault.h"
|
|
|
|
|
|
namespace OOX
|
|
{
|
|
namespace Settings
|
|
{
|
|
class ShapeDefaults : public WritingElement
|
|
{
|
|
public:
|
|
ShapeDefaults();
|
|
virtual ~ShapeDefaults();
|
|
explicit ShapeDefaults(const XML::XNode& node);
|
|
const ShapeDefaults& operator =(const XML::XNode& node);
|
|
|
|
public:
|
|
virtual void fromXML(const XML::XNode& node);
|
|
virtual const XML::XNode toXML() const;
|
|
|
|
private:
|
|
ShapeDefault m_shapeDefault;
|
|
ShapeLayout m_shapeLayout;
|
|
};
|
|
} // namespace Settings
|
|
} // namespace OOX
|
|
|
|
#endif // OOX_SETTINGS_SHAPE_DEFAULTS_INCLUDE_H_
|