mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-04-07 13:55:33 +08:00
26 lines
592 B
C++
26 lines
592 B
C++
#include "precompiled_cpodf.h"
|
|
#include "style_map.h"
|
|
|
|
#include <boost/foreach.hpp>
|
|
|
|
#include <cpdoccore/xml/xmlchar.h>
|
|
#include <cpdoccore/xml/serialize.h>
|
|
#include <cpdoccore/xml/attributes.h>
|
|
|
|
|
|
namespace cpdoccore {
|
|
namespace odf {
|
|
|
|
// style:map
|
|
//////////////////////////////////////////////////////////////////////////////////////////////////
|
|
const wchar_t * style_map::ns = L"style";
|
|
const wchar_t * style_map::name = L"map";
|
|
|
|
void style_map::create_child_element( const ::std::wstring & Ns, const ::std::wstring & Name)
|
|
{
|
|
CP_NOT_APPLICABLE_ELM();
|
|
}
|
|
|
|
}
|
|
}
|