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
cxfa_list.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 "xfa/fxfa/parser/cxfa_list.h"
8
9#include "core/fxcrt/fx_extension.h"
10#include "fxjs/xfa/cfxjse_engine.h"
11#include "fxjs/xfa/cjx_treelist.h"
12#include "xfa/fxfa/parser/cxfa_document.h"
13#include "xfa/fxfa/parser/cxfa_node.h"
14
15CXFA_List::CXFA_List(CXFA_Document* pDocument, CJX_Object* obj)
16 : CXFA_List(pDocument, XFA_ObjectType::List, XFA_Element::List, obj) {}
17
18CXFA_List::CXFA_List(CXFA_Document* pDocument,
19 XFA_ObjectType objectType,
20 XFA_Element eType,
21 CJX_Object* obj)
22 : CXFA_Object(pDocument, objectType, eType, obj) {}
23
24CXFA_List::~CXFA_List() = default;
~CXFA_List() override
CXFA_List(CXFA_Document *doc, CJX_Object *js_obj)
Definition cxfa_list.cpp:15
CXFA_List(CXFA_Document *pDocument, XFA_ObjectType objectType, XFA_Element eType, CJX_Object *obj)
Definition cxfa_list.cpp:18
CXFA_Object(CXFA_Document *pDocument, XFA_ObjectType objectType, XFA_Element eType, CJX_Object *jsObject)
XFA_ObjectType
Definition cxfa_object.h:21
XFA_Element
Definition fxfa_basic.h:75