mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-04-07 13:55:33 +08:00
35 lines
387 B
C++
35 lines
387 B
C++
#include "GrpSpPr.h"
|
|
|
|
namespace PPTX
|
|
{
|
|
namespace Logic
|
|
{
|
|
|
|
GrpSpPr::GrpSpPr()
|
|
{
|
|
}
|
|
|
|
|
|
GrpSpPr::~GrpSpPr()
|
|
{
|
|
}
|
|
|
|
|
|
GrpSpPr::GrpSpPr(XmlUtils::CXmlNode& node)
|
|
{
|
|
fromXML(node);
|
|
}
|
|
|
|
|
|
const GrpSpPr& GrpSpPr::operator =(XmlUtils::CXmlNode& node)
|
|
{
|
|
fromXML(node);
|
|
return *this;
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
} // namespace Logic
|
|
} // namespace PPTX
|