mirror of
https://github.com/JakubMelka/PDF4QT.git
synced 2025-06-05 21:59:17 +02:00
Path constructing operands
This commit is contained in:
@ -170,6 +170,10 @@ public:
|
||||
/// \param character Character to be tested
|
||||
static constexpr bool isRegular(char character) { return !isWhitespace(character) && !isDelimiter(character); }
|
||||
|
||||
/// Returns string from operand type
|
||||
/// \param type Token type
|
||||
static QString getStringFromOperandType(TokenType type);
|
||||
|
||||
private:
|
||||
inline char lookChar() const { Q_ASSERT(m_current != m_end); return *m_current; }
|
||||
|
||||
|
Reference in New Issue
Block a user