Add doc for new function

This commit is contained in:
Marco Hugentobler 2019-01-05 14:54:15 +01:00
parent 492ee5fe06
commit 4e29558808
2 changed files with 12 additions and 0 deletions

View File

@ -155,6 +155,13 @@ Returns the quality for WMS images defined in a QGIS project.
%End
int wmsMaxAtlasFeatures( const QgsProject &project );
%Docstring
Returns the maximum number of atlas features which can be printed in a request
:param project: the QGIS project
:return: the number of atlas features
%End
bool wmsUseLayerIds( const QgsProject &project );
%Docstring

View File

@ -147,6 +147,11 @@ namespace QgsServerProjectUtils
*/
SERVER_EXPORT int wmsImageQuality( const QgsProject &project );
/**
* Returns the maximum number of atlas features which can be printed in a request
* \param project the QGIS project
* \return the number of atlas features
*/
SERVER_EXPORT int wmsMaxAtlasFeatures( const QgsProject &project );
/**