blob: cefa58a2fc55c7efca5645f5c2d71a67dd0c4df2 [file] [log] [blame]
kumarashishg826308d2023-06-23 13:21:22 +00001// Copyright 2017 The PDFium Authors
Philip P. Moltmannd904c1e2018-03-19 09:26:45 -07002// 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_SPEAK_H_
8#define XFA_FXFA_PARSER_CXFA_SPEAK_H_
9
10#include "xfa/fxfa/parser/cxfa_node.h"
11
Haibo Huang49cc9302020-04-27 16:14:24 -070012class CXFA_Speak final : public CXFA_Node {
Philip P. Moltmannd904c1e2018-03-19 09:26:45 -070013 public:
kumarashishg826308d2023-06-23 13:21:22 +000014 CONSTRUCT_VIA_MAKE_GARBAGE_COLLECTED;
Philip P. Moltmannd904c1e2018-03-19 09:26:45 -070015 ~CXFA_Speak() override;
kumarashishg826308d2023-06-23 13:21:22 +000016
17 private:
18 CXFA_Speak(CXFA_Document* doc, XFA_PacketType packet);
Philip P. Moltmannd904c1e2018-03-19 09:26:45 -070019};
20
21#endif // XFA_FXFA_PARSER_CXFA_SPEAK_H_