Annotation editation - more complex annotations

This commit is contained in:
Jakub Melka
2020-12-24 17:33:45 +01:00
parent ac5a43c6ac
commit ce0d75f44f
6 changed files with 366 additions and 21 deletions

View File

@ -320,6 +320,9 @@ public:
/// then it throws an exception.
const PDFObject& getItem(size_t index) const { return m_objects.at(index); }
/// Sets item at the specified index. Index must be valid.
void setItem(PDFObject value, size_t index) { m_objects[index] = qMove(value); }
/// Returns size of the array (number of elements)
size_t getCount() const { return m_objects.size(); }