mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-07-14 20:24:39 +08:00
git-svn-id: svn://fileserver/activex/AVS/Sources/TeamlabOffice/trunk/ServerComponents@58816 954022d7-b5bf-4e40-9824-e11837661b57
11 lines
251 B
C++
11 lines
251 B
C++
#include "stdafx.h"
|
|
#include "Converter.h"
|
|
#include <Document/Document.h>
|
|
|
|
|
|
const bool Converter::convert(Document& doc, MSXML2::IXMLDOMDocumentPtr xslt)
|
|
{
|
|
return VARIANT_TRUE == doc.getDoc()->loadXML(doc.getDoc()->transformNode(xslt));
|
|
}
|
|
|