File tree 1 file changed +8
-8
lines changed
1 file changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -215,49 +215,49 @@ class CORE_EXPORT QgsFeatureRequest
215
215
*
216
216
* \since QGIS 2.14
217
217
*/
218
- class CORE_EXPORT OrderBy : public QList<QgsFeatureRequest::OrderByClause>
218
+ class OrderBy : public QList <QgsFeatureRequest::OrderByClause>
219
219
{
220
220
public:
221
221
222
222
/* *
223
223
* Create a new empty order by
224
224
*/
225
- OrderBy ()
225
+ CORE_EXPORT OrderBy ()
226
226
: QList<QgsFeatureRequest::OrderByClause>()
227
227
{}
228
228
229
229
/* *
230
230
* Create a new order by from a list of clauses
231
231
*/
232
- OrderBy ( const QList<QgsFeatureRequest::OrderByClause> &other );
232
+ CORE_EXPORT OrderBy ( const QList<QgsFeatureRequest::OrderByClause> &other );
233
233
234
234
/* *
235
235
* Get a copy as a list of OrderByClauses
236
236
*
237
237
* This is only required in Python where the inheritance
238
238
* is not properly propagated and this makes it usable.
239
239
*/
240
- QList<QgsFeatureRequest::OrderByClause> list () const ;
240
+ QList<QgsFeatureRequest::OrderByClause> CORE_EXPORT list () const ;
241
241
242
242
/* *
243
243
* Serialize to XML
244
244
*/
245
- void save ( QDomElement &elem ) const ;
245
+ void CORE_EXPORT save ( QDomElement &elem ) const ;
246
246
247
247
/* *
248
248
* Deserialize from XML
249
249
*/
250
- void load ( const QDomElement &elem );
250
+ void CORE_EXPORT load ( const QDomElement &elem );
251
251
252
252
/* *
253
253
* Returns a set of used attributes
254
254
*/
255
- QSet<QString> usedAttributes () const ;
255
+ QSet<QString> CORE_EXPORT usedAttributes () const ;
256
256
257
257
/* *
258
258
* Dumps the content to an SQL equivalent syntax
259
259
*/
260
- QString dump () const ;
260
+ QString CORE_EXPORT dump () const ;
261
261
};
262
262
263
263
/* *
You can’t perform that action at this time.
0 commit comments