blob: ef43f374889bf3cd6a4bdf0a6d9c4d993db6c5e5 [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_FLIPLABEL_H_
8#define XFA_FXFA_PARSER_CXFA_FLIPLABEL_H_
9
10#include "xfa/fxfa/parser/cxfa_node.h"
11
Haibo Huang49cc9302020-04-27 16:14:24 -070012class CXFA_FlipLabel 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_FlipLabel() override;
kumarashishg826308d2023-06-23 13:21:22 +000016
17 private:
18 CXFA_FlipLabel(CXFA_Document* doc, XFA_PacketType packet);
Philip P. Moltmannd904c1e2018-03-19 09:26:45 -070019};
20
21#endif // XFA_FXFA_PARSER_CXFA_FLIPLABEL_H_