blob: c1af217bf12f1a56f4be4fe49451b0ce05da97c7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
// Copyright 2017 PDFium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
// Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com
#ifndef XFA_FXFA_CXFA_TEXTUSERDATA_H_
#define XFA_FXFA_CXFA_TEXTUSERDATA_H_
#include "core/fxcrt/retain_ptr.h"
class CFX_CSSComputedStyle;
class CXFA_LinkUserData;
class CXFA_TextUserData : public Retainable {
public:
template <typename T, typename... Args>
friend RetainPtr<T> pdfium::MakeRetain(Args&&... args);
RetainPtr<CFX_CSSComputedStyle> m_pStyle;
RetainPtr<CXFA_LinkUserData> m_pLinkData;
private:
explicit CXFA_TextUserData(const RetainPtr<CFX_CSSComputedStyle>& pStyle);
CXFA_TextUserData(const RetainPtr<CFX_CSSComputedStyle>& pStyle,
const RetainPtr<CXFA_LinkUserData>& pLinkData);
~CXFA_TextUserData() override;
};
#endif // XFA_FXFA_CXFA_TEXTUSERDATA_H_
|