blob: 8fe7e6f7cf03cb8018f8dd228eeaf69241fc2bdd [file] [log] [blame]
// Copyright 2017 PDFium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
// Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com
#include "xfa/fxfa/parser/cxfa_list.h"
#include "core/fxcrt/fx_extension.h"
#include "fxjs/xfa/cfxjse_engine.h"
#include "fxjs/xfa/cjx_treelist.h"
#include "xfa/fxfa/parser/cxfa_document.h"
#include "xfa/fxfa/parser/cxfa_node.h"
CXFA_List::CXFA_List(CXFA_Document* pDocument, CJX_Object* obj)
: CXFA_List(pDocument, XFA_ObjectType::List, XFA_Element::List, obj) {}
CXFA_List::CXFA_List(CXFA_Document* pDocument,
XFA_ObjectType objectType,
XFA_Element eType,
CJX_Object* obj)
: CXFA_Object(pDocument, objectType, eType, obj) {}
CXFA_List::~CXFA_List() = default;