blob: 27173cd745fadb8e7ed9c830dbf162d119d6ac34 [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_LOG_H_
8#define XFA_FXFA_PARSER_CXFA_LOG_H_
9
10#include "xfa/fxfa/parser/cxfa_node.h"
11
Tom Sepez55865452018-08-27 20:18:04 +000012class CXFA_Log final : public CXFA_Node {
Dan Sinclairf4736722017-11-27 18:10:47 +000013 public:
Dan Sinclairc40c5aa2017-11-30 21:29:11 +000014 CXFA_Log(CXFA_Document* doc, XFA_PacketType packet);
Dan Sinclairf4736722017-11-27 18:10:47 +000015 ~CXFA_Log() override;
16};
17
18#endif // XFA_FXFA_PARSER_CXFA_LOG_H_