mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-04-07 13:55:33 +08:00
35 lines
749 B
C++
35 lines
749 B
C++
#include "precompiled_cpodf.h"
|
|
|
|
#include "abstract_xml.h"
|
|
|
|
//#include "paragraph_elements.h"
|
|
|
|
#include <boost/foreach.hpp>
|
|
|
|
namespace cpdoccore {
|
|
namespace odf {
|
|
|
|
|
|
// abstract-xml
|
|
//////////////////////////////////////////////////////////////////////////////////////////////////
|
|
const wchar_t * abstract_xml::ns = L"";
|
|
const wchar_t * abstract_xml::name = L"abstract-xml";
|
|
|
|
void abstract_xml::serialize(std::wostream & strm)
|
|
{
|
|
}
|
|
|
|
//void abstract_xml::create_child_element( const ::std::wstring & Ns, const ::std::wstring & Name)
|
|
//{
|
|
// CP_CREATE_ELEMENT(xml_content_);
|
|
//}
|
|
//
|
|
//void abstract_xml::add_child_element( office_element_ptr & child_element)
|
|
//{
|
|
// xml_content_.push_back(child_element);
|
|
//}
|
|
|
|
|
|
}
|
|
}
|