Qt
Internal/Contributor docs for the Qt SDK. Note: These are NOT official API docs; those are found at https://doc.qt.io/
Loading...
Searching...
No Matches
cfx_xmlchardata.cpp
Go to the documentation of this file.
1// Copyright 2017 The PDFium Authors
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5// Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com
6
7#include "core/fxcrt/xml/cfx_xmlchardata.h"
8
9#include "core/fxcrt/xml/cfx_xmldocument.h"
10
11CFX_XMLCharData::CFX_XMLCharData(const WideString& wsCData)
12 : CFX_XMLText(wsCData) {}
13
14CFX_XMLCharData::~CFX_XMLCharData() = default;
15
16CFX_XMLNode::Type CFX_XMLCharData::GetType() const {
17 return Type::kCharData;
18}
19
20CFX_XMLNode* CFX_XMLCharData::Clone(CFX_XMLDocument* doc) {
21 return doc->CreateNode<CFX_XMLCharData>(GetText());
22}
23
24void CFX_XMLCharData::Save(
25 const RetainPtr<IFX_RetainableWriteStream>& pXMLStream) {
26 pXMLStream->WriteString("<![CDATA[");
27 pXMLStream->WriteString(GetText().ToUTF8().AsStringView());
28 pXMLStream->WriteString("]]>");
29}
Type GetType() const override
CFX_XMLCharData(const WideString &wsCData)
void Save(const RetainPtr< IFX_RetainableWriteStream > &pXMLStream) override
~CFX_XMLCharData() override
CFX_XMLNode * Clone(CFX_XMLDocument *doc) override
const WideString & GetText() const
Definition cfx_xmltext.h:25
CFX_XMLText(const WideString &wsText)