mirror of
https://github.com/qgis/QGIS.git
synced 2025-11-12 00:06:54 -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;
|
QSet<QString> excludeAttributesWms() /Deprecated/ const;
|
||||||
%Docstring
|
%Docstring
|
||||||
A set of attributes that are not advertised in WMS requests with QGIS server.
|
A set of attributes that are not advertised in WMS requests with QGIS server.
|
||||||
|
|
||||||
|
.. deprecated:: QGIS 3.16
|
||||||
%End
|
%End
|
||||||
|
|
||||||
void setExcludeAttributesWms( const QSet<QString> &att ) /Deprecated/;
|
void setExcludeAttributesWms( const QSet<QString> &att ) /Deprecated/;
|
||||||
%Docstring
|
%Docstring
|
||||||
A set of attributes that are not advertised in WMS requests with QGIS server.
|
A set of attributes that are not advertised in WMS requests with QGIS server.
|
||||||
|
|
||||||
|
.. deprecated:: QGIS 3.16
|
||||||
%End
|
%End
|
||||||
|
|
||||||
QSet<QString> excludeAttributesWfs() /Deprecated/ const;
|
QSet<QString> excludeAttributesWfs() /Deprecated/ const;
|
||||||
%Docstring
|
%Docstring
|
||||||
A set of attributes that are not advertised in WFS requests with QGIS server.
|
A set of attributes that are not advertised in WFS requests with QGIS server.
|
||||||
|
|
||||||
|
.. deprecated:: QGIS 3.16
|
||||||
%End
|
%End
|
||||||
|
|
||||||
void setExcludeAttributesWfs( const QSet<QString> &att ) /Deprecated/;
|
void setExcludeAttributesWfs( const QSet<QString> &att ) /Deprecated/;
|
||||||
%Docstring
|
%Docstring
|
||||||
A set of attributes that are not advertised in WFS requests with QGIS server.
|
A set of attributes that are not advertised in WFS requests with QGIS server.
|
||||||
|
|
||||||
|
.. deprecated:: QGIS 3.16
|
||||||
%End
|
%End
|
||||||
|
|
||||||
virtual bool deleteAttribute( int attr );
|
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.
|
* 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; }
|
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.
|
* 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; }
|
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.
|
* 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; }
|
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.
|
* 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; }
|
Q_DECL_DEPRECATED void setExcludeAttributesWfs( const QSet<QString> &att ) SIP_DEPRECATED { mExcludeAttributesWFS = att; }
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user