blob: 13dc425c9d62ece261eafff1c6ccffffab79ddcb [file] [log] [blame]
// 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_FGAS_LAYOUT_CFX_TEXTUSERDATA_H_
#define XFA_FGAS_LAYOUT_CFX_TEXTUSERDATA_H_
#include "core/fxcrt/retain_ptr.h"
class CFX_CSSComputedStyle;
class CFX_LinkUserData;
class CFX_TextUserData final : public Retainable {
public:
CONSTRUCT_VIA_MAKE_RETAIN;
RetainPtr<CFX_CSSComputedStyle> m_pStyle;
RetainPtr<CFX_LinkUserData> m_pLinkData;
private:
explicit CFX_TextUserData(const RetainPtr<CFX_CSSComputedStyle>& pStyle);
CFX_TextUserData(const RetainPtr<CFX_CSSComputedStyle>& pStyle,
const RetainPtr<CFX_LinkUserData>& pLinkData);
~CFX_TextUserData() override;
};
#endif // XFA_FGAS_LAYOUT_CFX_TEXTUSERDATA_H_