cli: search: implement -r, cleanup of options that don't belong there

This commit is contained in:
2019-08-19 21:09:03 +02:00
父節點 4cdb1296a9
當前提交 8047c16558
共有 3 個文件被更改,包括 19 次插入11 次删除

查看文件

@@ -21,7 +21,12 @@ const QVector<SortCondition> &QSSQuery::getSortConditions() const
QueryType QSSQuery::getQueryType()
{
return static_cast<QueryType>(tokensMask & COMBINED);
return static_cast<QueryType>(tokensMask & COMBINED);
}
void QSSQuery::addSortCondition(SortCondition sc)
{
this->sortConditions.append(sc);
}
bool QSSQuery::checkParanthesis(QString expression)

查看文件

@@ -48,6 +48,7 @@ public:
const QVector<SortCondition> & getSortConditions() const;
QueryType getQueryType();
int getTokensMask() const { return tokensMask; }
void addSortCondition(SortCondition sc);
static bool checkParanthesis(QString query);
static QSSQuery build(QString query);