blob: cf4c0f0241e1ee6934e24e121e59e22a13e97a71 [file] [log] [blame]
K. Moon832a6942022-10-31 20:11:31 +00001// Copyright 2017 The PDFium Authors
Dan Sinclairf4736722017-11-27 18:10:47 +00002// 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_CURRENCYSYMBOLS_H_
8#define XFA_FXFA_PARSER_CXFA_CURRENCYSYMBOLS_H_
9
10#include "xfa/fxfa/parser/cxfa_node.h"
11
Tom Sepez55865452018-08-27 20:18:04 +000012class CXFA_CurrencySymbols final : public CXFA_Node {
Dan Sinclairf4736722017-11-27 18:10:47 +000013 public:
Tom Sepez017cbc62020-08-18 23:25:17 +000014 CONSTRUCT_VIA_MAKE_GARBAGE_COLLECTED;
Dan Sinclairf4736722017-11-27 18:10:47 +000015 ~CXFA_CurrencySymbols() override;
Tom Sepez017cbc62020-08-18 23:25:17 +000016
17 private:
18 CXFA_CurrencySymbols(CXFA_Document* doc, XFA_PacketType packet);
Dan Sinclairf4736722017-11-27 18:10:47 +000019};
20
21#endif // XFA_FXFA_PARSER_CXFA_CURRENCYSYMBOLS_H_