mirror of
https://github.com/JakubMelka/PDF4QT.git
synced 2025-06-05 21:59:17 +02:00
PostScript engine for Type 4 functions (PostScript functions)
This commit is contained in:
@@ -150,6 +150,12 @@ public:
|
||||
}
|
||||
}
|
||||
|
||||
/// Returns the last element of the array
|
||||
inline const T& back() const { return m_variableBlock.empty() ? m_flatBlock[m_flatBlockItemCount - 1] : m_variableBlock.back(); }
|
||||
|
||||
/// Erases the last element from the array
|
||||
inline void pop_back() { resize(size() - 1); }
|
||||
|
||||
private:
|
||||
size_t getFlatBlockSize() const { return m_flatBlockItemCount; }
|
||||
|
||||
|
Reference in New Issue
Block a user