This commit is contained in:
Blottiere Paul 2018-07-10 17:43:58 +01:00
parent 69c1c3a19e
commit cb6b98349a
4 changed files with 10 additions and 11 deletions

View File

@ -16,8 +16,7 @@
class QgsAccessControl : QgsFeatureFilterProvider class QgsAccessControl : QgsFeatureFilterProvider
{ {
%Docstring %Docstring
A helper class that centralize the restrictions given by all the A helper class that centralize the restrictions given by all the access control filter plugins.
access control filter plugins.
.. versionadded:: 2.14 .. versionadded:: 2.14
%End %End

View File

@ -33,8 +33,7 @@ class QgsAccessControlPlugin;
/** /**
* \ingroup server * \ingroup server
* \class QgsAccessControl * \class QgsAccessControl
* \brief A helper class that centralize the restrictions given by all the * \brief A helper class that centralize the restrictions given by all the access control filter plugins.
* access control filter plugins.
* \since QGIS 2.14 * \since QGIS 2.14
**/ **/
class SERVER_EXPORT QgsAccessControl : public QgsFeatureFilterProvider class SERVER_EXPORT QgsAccessControl : public QgsFeatureFilterProvider

View File

@ -30,12 +30,6 @@
#include "qgsgeometry.h" #include "qgsgeometry.h"
#include "qgsprojectversion.h" #include "qgsprojectversion.h"
/**
* \ingroup server
* QgsWmsParameters provides an interface to retrieve and manipulate WMS
* parameters received from the client.
* \since QGIS 3.0
*/
namespace QgsWms namespace QgsWms
{ {
struct QgsWmsParametersLayer struct QgsWmsParametersLayer
@ -74,6 +68,12 @@ namespace QgsWms
QList<QgsWmsParametersHighlightLayer> mHighlightLayers; // list of highlight layers for this composer map QList<QgsWmsParametersHighlightLayer> mHighlightLayers; // list of highlight layers for this composer map
}; };
/**
* \ingroup server
* \class QgsWmsParameters
* \brief Interface to retrieve and manipulate WMS parameters received from the client.
* \since QGIS 3.0
*/
class QgsWmsParameters class QgsWmsParameters
{ {
Q_GADGET Q_GADGET

View File

@ -29,13 +29,14 @@ namespace QgsWms
* \ingroup server * \ingroup server
* \class QgsserviceException * \class QgsserviceException
* \brief Exception class for WMS service exceptions. * \brief Exception class for WMS service exceptions.
* \since QGIS 3.0
* *
* The most important codes are: * The most important codes are:
* * "InvalidFormat" * * "InvalidFormat"
* * "Invalid CRS" * * "Invalid CRS"
* * "LayerNotDefined" / "StyleNotDefined" * * "LayerNotDefined" / "StyleNotDefined"
* * "OperationNotSupported" * * "OperationNotSupported"
*
* \since QGIS 3.0
*/ */
class QgsServiceException : public QgsOgcServiceException class QgsServiceException : public QgsOgcServiceException
{ {