Dan Sinclair | f473672 | 2017-11-27 18:10:47 +0000 | [diff] [blame] | 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 | #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 Sepez | 5586545 | 2018-08-27 20:18:04 +0000 | [diff] [blame^] | 12 | class CXFA_KeyUsage final : public CXFA_Node { |
Dan Sinclair | f473672 | 2017-11-27 18:10:47 +0000 | [diff] [blame] | 13 | public: |
Dan Sinclair | c40c5aa | 2017-11-30 21:29:11 +0000 | [diff] [blame] | 14 | CXFA_KeyUsage(CXFA_Document* doc, XFA_PacketType packet); |
Dan Sinclair | f473672 | 2017-11-27 18:10:47 +0000 | [diff] [blame] | 15 | ~CXFA_KeyUsage() override; |
| 16 | }; |
| 17 | |
| 18 | #endif // XFA_FXFA_PARSER_CXFA_KEYUSAGE_H_ |