• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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_object.h"
8 
~CXML_Object()9 CXML_Object::~CXML_Object() {}
10 
AsContent()11 CXML_Content* CXML_Object::AsContent() {
12   return nullptr;
13 }
14 
AsElement()15 CXML_Element* CXML_Object::AsElement() {
16   return nullptr;
17 }
18 
AsContent() const19 const CXML_Content* CXML_Object::AsContent() const {
20   return nullptr;
21 }
22 
AsElement() const23 const CXML_Element* CXML_Object::AsElement() const {
24   return nullptr;
25 }
26