• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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_month.h"
8 
9 namespace {
10 
11 constexpr wchar_t kName[] = L"month";
12 
13 }  // namespace
14 
CXFA_Month(CXFA_Document * doc,XFA_PacketType packet)15 CXFA_Month::CXFA_Month(CXFA_Document* doc, XFA_PacketType packet)
16     : CXFA_Node(doc,
17                 packet,
18                 XFA_XDPPACKET_LocaleSet,
19                 XFA_ObjectType::ContentNode,
20                 XFA_Element::Month,
21                 nullptr,
22                 nullptr,
23                 kName) {}
24 
~CXFA_Month()25 CXFA_Month::~CXFA_Month() {}
26