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 "xfa/fxfa/parser/cxfa_era.h" 8 9 namespace { 10 11 constexpr wchar_t kName[] = L"era"; 12 13 } // namespace 14 15 CXFA_Era::CXFA_Era(CXFA_Document* doc, XFA_PacketType packet) 16 : CXFA_Node(doc, 17 packet, 18 XFA_XDPPACKET_LocaleSet, 19 XFA_ObjectType::ContentNode, 20 XFA_Element::Era, 21 nullptr, 22 nullptr, 23 kName) {} 24 25 CXFA_Era::~CXFA_Era() {} 26