mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-07-19 23:02:34 +08:00
git-svn-id: svn://fileserver/activex/AVS/Sources/TeamlabOffice/trunk/ServerComponents@53593 954022d7-b5bf-4e40-9824-e11837661b57
49 lines
771 B
C++
49 lines
771 B
C++
|
|
// auto inserted precompiled begin
|
|
#include "precompiled_docxformat.h"
|
|
// auto inserted precompiled end
|
|
|
|
#include "ExtraClrSchemeLst.h"
|
|
|
|
|
|
namespace OOX
|
|
{
|
|
namespace Theme
|
|
{
|
|
|
|
ExtraClrSchemeLst::ExtraClrSchemeLst()
|
|
{
|
|
}
|
|
|
|
|
|
ExtraClrSchemeLst::~ExtraClrSchemeLst()
|
|
{
|
|
}
|
|
|
|
|
|
ExtraClrSchemeLst::ExtraClrSchemeLst(const XML::XNode& node)
|
|
{
|
|
fromXML(node);
|
|
}
|
|
|
|
|
|
const ExtraClrSchemeLst& ExtraClrSchemeLst::operator =(const XML::XNode& node)
|
|
{
|
|
fromXML(node);
|
|
return *this;
|
|
}
|
|
|
|
|
|
void ExtraClrSchemeLst::fromXML(const XML::XNode& node)
|
|
{
|
|
}
|
|
|
|
|
|
const XML::XNode ExtraClrSchemeLst::toXML() const
|
|
{
|
|
return
|
|
XML::XElement(ns.a + "extraClrSchemeLst");
|
|
}
|
|
|
|
} // namespace Theme
|
|
} // namespace OOX
|