mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-07-17 06:13:58 +08:00
49 lines
667 B
C++
49 lines
667 B
C++
|
|
// auto inserted precompiled begin
|
|
#include "precompiled_odtformat.h"
|
|
// auto inserted precompiled end
|
|
|
|
#include "DateYear.h"
|
|
|
|
|
|
namespace Odt
|
|
{
|
|
namespace Content
|
|
{
|
|
|
|
DateYear::DateYear()
|
|
{
|
|
}
|
|
|
|
|
|
DateYear::~DateYear()
|
|
{
|
|
}
|
|
|
|
|
|
DateYear::DateYear(const XML::XNode& node)
|
|
{
|
|
fromXML(node);
|
|
}
|
|
|
|
|
|
const DateYear& DateYear::operator =(const XML::XNode& node)
|
|
{
|
|
fromXML(node);
|
|
return *this;
|
|
}
|
|
|
|
|
|
void DateYear::fromXML(const XML::XNode& node)
|
|
{
|
|
}
|
|
|
|
|
|
const XML::XNode DateYear::toXML() const
|
|
{
|
|
return
|
|
XML::XElement(ns.number + "year");
|
|
}
|
|
|
|
} // namespace Content
|
|
} // namespace Odt
|