-
-
Notifications
You must be signed in to change notification settings - Fork 3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
24 additions
and
22 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -215,49 +215,49 @@ class CORE_EXPORT QgsFeatureRequest | |
* | ||
* \since QGIS 2.14 | ||
*/ | ||
class OrderBy : public QList<QgsFeatureRequest::OrderByClause> | ||
class CORE_EXPORT OrderBy : public QList<QgsFeatureRequest::OrderByClause> | ||
This comment has been minimized.
Sorry, something went wrong.
This comment has been minimized.
Sorry, something went wrong.
m-kuhn
Author
Member
|
||
{ | ||
public: | ||
|
||
/** | ||
* Create a new empty order by | ||
*/ | ||
CORE_EXPORT OrderBy() | ||
OrderBy() | ||
: QList<QgsFeatureRequest::OrderByClause>() | ||
{} | ||
|
||
/** | ||
* Create a new order by from a list of clauses | ||
*/ | ||
CORE_EXPORT OrderBy( const QList<QgsFeatureRequest::OrderByClause> &other ); | ||
OrderBy( const QList<QgsFeatureRequest::OrderByClause> &other ); | ||
|
||
/** | ||
* Get a copy as a list of OrderByClauses | ||
* | ||
* This is only required in Python where the inheritance | ||
* is not properly propagated and this makes it usable. | ||
*/ | ||
QList<QgsFeatureRequest::OrderByClause> CORE_EXPORT list() const; | ||
QList<QgsFeatureRequest::OrderByClause> list() const; | ||
|
||
/** | ||
* Serialize to XML | ||
*/ | ||
void CORE_EXPORT save( QDomElement &elem ) const; | ||
void save( QDomElement &elem ) const; | ||
|
||
/** | ||
* Deserialize from XML | ||
*/ | ||
void CORE_EXPORT load( const QDomElement &elem ); | ||
void load( const QDomElement &elem ); | ||
|
||
/** | ||
* Returns a set of used attributes | ||
*/ | ||
QSet<QString> CORE_EXPORT usedAttributes() const; | ||
QSet<QString> usedAttributes() const; | ||
|
||
/** | ||
* Dumps the content to an SQL equivalent syntax | ||
*/ | ||
QString CORE_EXPORT dump() const; | ||
QString dump() const; | ||
}; | ||
|
||
/** | ||
|
@m-kuhn see 1d5d92e
if this is again reverted, there is an issue with sipify which does not handle code like this at the moment.
I can fix this but I wonder if it's the appropriate way to fix windows build.