Bugfixing of signature verification tool

This commit is contained in:
Jakub Melka
2020-09-30 13:27:57 +02:00
parent ad413ddb71
commit 6ba8eabc34
5 changed files with 72 additions and 1 deletions

View File

@ -583,7 +583,7 @@ private:
};
/// Set of closed intervals
class PDFClosedIntervalSet
class PDFFORQTLIBSHARED_EXPORT PDFClosedIntervalSet
{
public:
explicit inline PDFClosedIntervalSet() = default;
@ -611,6 +611,9 @@ public:
/// Returns sum of interval lengths
PDFInteger getTotalLength() const;
/// Transforms interval set to readable text
QString toText() const;
private:
/// Normalizes interval ranges - merges adjacent intervals
void normalize();