mirror of
https://github.com/qgis/QGIS.git
synced 2025-11-03 00:14:12 -05:00
add deprecated dox
This commit is contained in:
parent
de4a293ec5
commit
b923c4a19f
@ -1971,21 +1971,29 @@ Returns a map of field name to attribute alias
|
||||
QSet<QString> excludeAttributesWms() /Deprecated/ const;
|
||||
%Docstring
|
||||
A set of attributes that are not advertised in WMS requests with QGIS server.
|
||||
|
||||
.. deprecated:: QGIS 3.16
|
||||
%End
|
||||
|
||||
void setExcludeAttributesWms( const QSet<QString> &att ) /Deprecated/;
|
||||
%Docstring
|
||||
A set of attributes that are not advertised in WMS requests with QGIS server.
|
||||
|
||||
.. deprecated:: QGIS 3.16
|
||||
%End
|
||||
|
||||
QSet<QString> excludeAttributesWfs() /Deprecated/ const;
|
||||
%Docstring
|
||||
A set of attributes that are not advertised in WFS requests with QGIS server.
|
||||
|
||||
.. deprecated:: QGIS 3.16
|
||||
%End
|
||||
|
||||
void setExcludeAttributesWfs( const QSet<QString> &att ) /Deprecated/;
|
||||
%Docstring
|
||||
A set of attributes that are not advertised in WFS requests with QGIS server.
|
||||
|
||||
.. deprecated:: QGIS 3.16
|
||||
%End
|
||||
|
||||
virtual bool deleteAttribute( int attr );
|
||||
|
||||
@ -1839,21 +1839,25 @@ class CORE_EXPORT QgsVectorLayer : public QgsMapLayer, public QgsExpressionConte
|
||||
|
||||
/**
|
||||
* A set of attributes that are not advertised in WMS requests with QGIS server.
|
||||
* \deprecated since QGIS 3.16
|
||||
*/
|
||||
Q_DECL_DEPRECATED QSet<QString> excludeAttributesWms() SIP_DEPRECATED const { return mExcludeAttributesWMS; }
|
||||
|
||||
/**
|
||||
* A set of attributes that are not advertised in WMS requests with QGIS server.
|
||||
* \deprecated since QGIS 3.16
|
||||
*/
|
||||
Q_DECL_DEPRECATED void setExcludeAttributesWms( const QSet<QString> &att ) SIP_DEPRECATED { mExcludeAttributesWMS = att; }
|
||||
|
||||
/**
|
||||
* A set of attributes that are not advertised in WFS requests with QGIS server.
|
||||
* \deprecated since QGIS 3.16
|
||||
*/
|
||||
Q_DECL_DEPRECATED QSet<QString> excludeAttributesWfs() SIP_DEPRECATED const { return mExcludeAttributesWFS; }
|
||||
|
||||
/**
|
||||
* A set of attributes that are not advertised in WFS requests with QGIS server.
|
||||
* \deprecated since QGIS 3.16
|
||||
*/
|
||||
Q_DECL_DEPRECATED void setExcludeAttributesWfs( const QSet<QString> &att ) SIP_DEPRECATED { mExcludeAttributesWFS = att; }
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user