blob: d0ce0eae041254ccc093d9eeda24ee68077e83d5 [file] [log] [blame]
Dan Sinclairf4736722017-11-27 18:10:47 +00001// 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#ifndef XFA_FXFA_PARSER_CXFA_COMMON_H_
8#define XFA_FXFA_PARSER_CXFA_COMMON_H_
9
10#include "xfa/fxfa/parser/cxfa_node.h"
11
12class CXFA_Common : public CXFA_Node {
13 public:
Dan Sinclairc40c5aa2017-11-30 21:29:11 +000014 CXFA_Common(CXFA_Document* doc, XFA_PacketType packet);
Dan Sinclairf4736722017-11-27 18:10:47 +000015 ~CXFA_Common() override;
16};
17
18#endif // XFA_FXFA_PARSER_CXFA_COMMON_H_