DocDiff application: text comparation

This commit is contained in:
Jakub Melka
2021-09-25 17:05:08 +02:00
parent e00863c6bc
commit 9bc29da83c
4 changed files with 163 additions and 4 deletions

View File

@ -91,6 +91,13 @@ public:
/// \param mask Mask
std::map<PDFInteger, PDFDocumentTextFlow> split(Flags mask) const;
/// Appends document text flow to this one
/// \param textFlow Text flow
void append(const PDFDocumentTextFlow& textFlow);
/// Returns text concantecated from all items
QString getText() const;
private:
Items m_items;
};