Statistics widget

This commit is contained in:
Jakub Melka
2021-06-19 18:57:02 +02:00
parent b8464ed4fa
commit 97f838e733
6 changed files with 282 additions and 3 deletions

View File

@ -32,7 +32,7 @@ class PDFObjectStorage;
class PDFDocument;
/// Utilities for manipulation with objects
class PDFObjectUtils
class Pdf4QtLIBSHARED_EXPORT PDFObjectUtils
{
public:
/// Returns a list of references referenced by \p objects. So, all references, which are present
@ -47,6 +47,10 @@ public:
static PDFObject replaceReferences(const PDFObject& object, const std::map<PDFObjectReference, PDFObjectReference>& referenceMapping);
/// Returns name for object type
/// \param type Type
static QString getObjectTypeName(PDFObject::Type type);
private:
PDFObjectUtils() = delete;
};