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_object.h"
      8 
      9 CXML_Object::~CXML_Object() {}
     10 
     11 CXML_Content* CXML_Object::AsContent() {
     12   return nullptr;
     13 }
     14 
     15 CXML_Element* CXML_Object::AsElement() {
     16   return nullptr;
     17 }
     18 
     19 const CXML_Content* CXML_Object::AsContent() const {
     20   return nullptr;
     21 }
     22 
     23 const CXML_Element* CXML_Object::AsElement() const {
     24   return nullptr;
     25 }
     26