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