mirror of
https://github.com/qgis/QGIS.git
synced 2025-04-14 00:07:35 -04:00
Added missing \param to ctor documentation
This commit is contained in:
parent
ce223160d2
commit
c0c18cd466
@ -26,7 +26,9 @@ class QgsBufferServerRequest : QgsServerRequest
|
||||
Constructor
|
||||
|
||||
\param url the url string
|
||||
\param method the request method
|
||||
\param method the request method, default to GET
|
||||
\param headers optional dictionary of header name-values
|
||||
\param data optional POST data
|
||||
%End
|
||||
|
||||
QgsBufferServerRequest( const QUrl &url, QgsServerRequest::Method method = QgsServerRequest::GetMethod, const QgsServerRequest::Headers &headers = QgsServerRequest::Headers(), QByteArray *data = 0 );
|
||||
@ -34,7 +36,9 @@ class QgsBufferServerRequest : QgsServerRequest
|
||||
Constructor
|
||||
|
||||
\param url QUrl
|
||||
\param method the request method
|
||||
\param method the request method, default to GET
|
||||
\param headers optional dictionary of header name-values
|
||||
\param data optional POST data
|
||||
%End
|
||||
|
||||
~QgsBufferServerRequest();
|
||||
|
@ -39,7 +39,9 @@ class SERVER_EXPORT QgsBufferServerRequest : public QgsServerRequest
|
||||
* Constructor
|
||||
*
|
||||
* \param url the url string
|
||||
* \param method the request method
|
||||
* \param method the request method, default to GET
|
||||
* \param headers optional dictionary of header name-values
|
||||
* \param data optional POST data
|
||||
*/
|
||||
QgsBufferServerRequest( const QString &url, QgsServerRequest::Method method = QgsServerRequest::GetMethod, const QgsServerRequest::Headers &headers = QgsServerRequest::Headers(), QByteArray *data = nullptr );
|
||||
|
||||
@ -47,7 +49,9 @@ class SERVER_EXPORT QgsBufferServerRequest : public QgsServerRequest
|
||||
* Constructor
|
||||
*
|
||||
* \param url QUrl
|
||||
* \param method the request method
|
||||
* \param method the request method, default to GET
|
||||
* \param headers optional dictionary of header name-values
|
||||
* \param data optional POST data
|
||||
*/
|
||||
QgsBufferServerRequest( const QUrl &url, QgsServerRequest::Method method = QgsServerRequest::GetMethod, const QgsServerRequest::Headers &headers = QgsServerRequest::Headers(), QByteArray *data = nullptr );
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user