Home | History | Annotate | Download | only in xml
      1 // Copyright 2017 PDFium Authors. All rights reserved.
      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/cxml_content.h"
      8 
      9 CXML_Content::CXML_Content(bool bCDATA, const WideStringView& content)
     10     : m_bCDATA(bCDATA), m_Content(content) {}
     11 
     12 CXML_Content::~CXML_Content() {}
     13 
     14 CXML_Content* CXML_Content::AsContent() {
     15   return this;
     16 }
     17 
     18 const CXML_Content* CXML_Content::AsContent() const {
     19   return this;
     20 }
     21