mirror of
https://github.com/JakubMelka/PDF4QT.git
synced 2025-06-05 21:59:17 +02:00
JBIG2 bugfixing
This commit is contained in:
@@ -298,6 +298,12 @@ public:
|
||||
/// Constructs huffman decoder from huffman code table, in this case, memory is allocated
|
||||
explicit PDFJBIG2HuffmanDecoder(PDFBitReader* reader, std::vector<PDFJBIG2HuffmanTableEntry>&& table);
|
||||
|
||||
PDFJBIG2HuffmanDecoder(const PDFJBIG2HuffmanDecoder&) = delete;
|
||||
PDFJBIG2HuffmanDecoder(PDFJBIG2HuffmanDecoder&& other);
|
||||
|
||||
PDFJBIG2HuffmanDecoder& operator=(const PDFJBIG2HuffmanDecoder&) = delete;
|
||||
PDFJBIG2HuffmanDecoder& operator=(PDFJBIG2HuffmanDecoder&& other);
|
||||
|
||||
/// Returns true, if huffman table is valid (and usable)
|
||||
bool isValid() const { return m_begin != m_end; }
|
||||
|
||||
|
Reference in New Issue
Block a user