1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79
|
/************************************************************************
* This file has been generated automatically from *
* *
* src/server/qgsserverfeatureid.h *
* *
* Do not edit manually ! Edit header and run scripts/sipify.py again *
************************************************************************/
%ModuleHeaderCode
#include "qgsserverfeatureid.h"
%End
namespace QgsServerFeatureId
{
QString getServerFid( const QgsFeature &feature, const QgsAttributeList &pkAttributes );
%Docstring
Returns the feature id based on primary keys.
:param feature: the feature
:param pkAttributes: the primary keys list
:return: the feature id based on primary keys
.. versionadded:: 3.4.9
%End
QgsFeatureRequest updateFeatureRequestFromServerFids( QgsFeatureRequest & featureRequest, const QStringList &serverFids, const QgsVectorDataProvider *provider );
%Docstring
Returns the feature request based on feature ids build with primary
keys.
:param featureRequest: the feature request to update
:param serverFids: the feature ids build with
:py:class:`QgsServerFeatureId`.getServerFid
:param provider: the vector layer provider to provide fields and primary
keys list
:return: the feature request updated
.. versionadded:: 3.4.9
%End
QString getExpressionFromServerFid( const QString &serverFid, const QgsVectorDataProvider *provider );
%Docstring
Returns the expression feature id based on primary keys.
:param serverFid: the feature id build with primary keys
:param provider: the vector layer provider to provide fields and primary
keys list
:return: the feature id based on primary keys
.. versionadded:: 3.4.9
%End
QString pkSeparator();
%Docstring
Returns the primary keys separator
:return: @@ the primary keys separator
.. versionadded:: 3.4.9
%End
};
/************************************************************************
* This file has been generated automatically from *
* *
* src/server/qgsserverfeatureid.h *
* *
* Do not edit manually ! Edit header and run scripts/sipify.py again *
************************************************************************/
|