Home | History | Annotate | Download | only in parser
      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_datetimesymbols.h"
      8 
      9 namespace {
     10 
     11 constexpr wchar_t kName[] = L"dateTimeSymbols";
     12 
     13 }  // namespace
     14 
     15 CXFA_DateTimeSymbols::CXFA_DateTimeSymbols(CXFA_Document* doc,
     16                                            XFA_PacketType packet)
     17     : CXFA_Node(doc,
     18                 packet,
     19                 XFA_XDPPACKET_LocaleSet,
     20                 XFA_ObjectType::ContentNode,
     21                 XFA_Element::DateTimeSymbols,
     22                 nullptr,
     23                 nullptr,
     24                 kName) {}
     25 
     26 CXFA_DateTimeSymbols::~CXFA_DateTimeSymbols() {}
     27