MCPcopy Create free account
hub / github.com/KDE/kid3 / ExpressionParser

Method ExpressionParser

src/core/model/expressionparser.cpp:77–82  ·  view source on GitHub ↗

* Constructor. * * @param operators additional operators (besides not, and, or), * highest priority first */

Source from the content-addressed store, hash-verified

75 * highest priority first
76 */
77ExpressionParser::ExpressionParser(QStringList operators) : // clazy:exclude=function-args-by-ref
78 m_operators(operators << QLatin1String("not") << QLatin1String("and")
79 << QLatin1String("or")),
80 m_error(false)
81{
82}
83
84/**
85 * Compare operator priority.

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected