//--------------------------------------------------------------------------------------- // Copyright (c) 2001-2025 by Apryse Software Inc. All Rights Reserved. // Consult legal.txt regarding legal and license information. //--------------------------------------------------------------------------------------- #ifndef PDFTRON_H_CPPPDFLinkInfo #define PDFTRON_H_CPPPDFLinkInfo #include #include namespace pdftron { namespace PDF { /** * LinkInfo is a utility class used to store information about links when used along * with the SetUrlExtraction feature. */ class LinkInfo { public: Rect rect; UString url; }; }; // namespace PDF }; // namespace pdftron #endif // PDFTRON_H_CPPPDFLinkInfo