Skip to content

Commit

Permalink
Add some doc
Browse files Browse the repository at this point in the history
  • Loading branch information
pblottiere committed Mar 9, 2021
1 parent 2e80141 commit 8434b3f
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 1 deletion.
3 changes: 3 additions & 0 deletions python/server/auto_generated/qgsserverrequest.sip.in
Expand Up @@ -59,6 +59,9 @@ Constructor
%End

QgsServerRequest( const QgsServerRequest &other );
%Docstring
Copy constructor.
%End

virtual ~QgsServerRequest();

Expand Down
3 changes: 3 additions & 0 deletions src/server/qgsserverrequest.h
Expand Up @@ -82,6 +82,9 @@ class SERVER_EXPORT QgsServerRequest
*/
QgsServerRequest( const QUrl &url, QgsServerRequest::Method method = QgsServerRequest::GetMethod, const QgsServerRequest::Headers &headers = QgsServerRequest::Headers() );

/**
* Copy constructor.
*/
QgsServerRequest( const QgsServerRequest &other );

//! destructor
Expand Down
5 changes: 4 additions & 1 deletion src/server/services/wms/qgswmsrequest.h
Expand Up @@ -41,7 +41,7 @@ namespace QgsWms
public:

/**
* Copy onstructor
* Copy constructor
*/
QgsWmsRequest( const QgsServerRequest &other );

Expand All @@ -50,6 +50,9 @@ namespace QgsWms
*/
~QgsWmsRequest() override = default;

/**
* Returns the parameters interpreted for the WMS service.
*/
const QgsWmsParameters &wmsParameters() const;

void setParameter( const QString &key, const QString &value ) override;
Expand Down

0 comments on commit 8434b3f

Please sign in to comment.