blob: 33e09de8e2763260383b0c0533ee7d993b2d65cc [file] [log] [blame]
kumarashishg826308d2023-06-23 13:21:22 +00001// Copyright 2017 The PDFium Authors
Philip P. Moltmann4d3acf42017-03-20 11:05:52 -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_BIND_H_
8#define XFA_FXFA_PARSER_CXFA_BIND_H_
9
Philip P. Moltmannd904c1e2018-03-19 09:26:45 -070010#include "xfa/fxfa/parser/cxfa_node.h"
Philip P. Moltmann4d3acf42017-03-20 11:05:52 -070011
Haibo Huang49cc9302020-04-27 16:14:24 -070012class CXFA_Bind final : public CXFA_Node {
Philip P. Moltmann4d3acf42017-03-20 11:05:52 -070013 public:
kumarashishg826308d2023-06-23 13:21:22 +000014 CONSTRUCT_VIA_MAKE_GARBAGE_COLLECTED;
Philip P. Moltmannd904c1e2018-03-19 09:26:45 -070015 ~CXFA_Bind() override;
Philip P. Moltmann4d3acf42017-03-20 11:05:52 -070016
kumarashishg826308d2023-06-23 13:21:22 +000017 WideString GetPicture() const;
18
19 private:
20 CXFA_Bind(CXFA_Document* doc, XFA_PacketType packet);
Philip P. Moltmann4d3acf42017-03-20 11:05:52 -070021};
22
23#endif // XFA_FXFA_PARSER_CXFA_BIND_H_