blob: 12e8e9a1d71062c8f8c2df1471a517e5642b2e82 [file] [log] [blame]
Dan Sinclairfe9d6402017-12-14 19:45:53 +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 FXJS_XFA_CJX_SUBJECTDN_H_
8#define FXJS_XFA_CJX_SUBJECTDN_H_
9
Tom Sepez315f94a2018-07-24 19:07:35 +000010#include "fxjs/jse_define.h"
Dan Sinclairfe9d6402017-12-14 19:45:53 +000011#include "fxjs/xfa/cjx_node.h"
12
13class CXFA_SubjectDN;
14
Tom Sepez55865452018-08-27 20:18:04 +000015class CJX_SubjectDN final : public CJX_Node {
Dan Sinclairfe9d6402017-12-14 19:45:53 +000016 public:
17 explicit CJX_SubjectDN(CXFA_SubjectDN* node);
18 ~CJX_SubjectDN() override;
19
Tom Sepez315f94a2018-07-24 19:07:35 +000020 JSE_PROP(delimiter);
Dan Sinclairfe9d6402017-12-14 19:45:53 +000021};
22
23#endif // FXJS_XFA_CJX_SUBJECTDN_H_