QGIS API Documentation
3.16.0-Hannover (43b64b13f3)
src
server
qgsservice.h
Go to the documentation of this file.
1
/***************************************************************************
2
qgsservice.h
3
4
Class defining the service interface for QGIS server services.
5
-------------------
6
begin : 2016-12-05
7
copyright : (C) 2016 by David Marteau
8
email : david dot marteau at 3liz dot com
9
***************************************************************************/
10
11
/***************************************************************************
12
* *
13
* This program is free software; you can redistribute it and/or modify *
14
* it under the terms of the GNU General Public License as published by *
15
* the Free Software Foundation; either version 2 of the License, or *
16
* (at your option) any later version. *
17
* *
18
***************************************************************************/
19
20
21
#ifndef QGSSERVICECOMPONENT_H
22
#define QGSSERVICECOMPONENT_H
23
24
#include "
qgsserverrequest.h
"
25
#include "
qgsserverresponse.h
"
26
27
class
QgsProject
;
28
39
class
SERVER_EXPORT
QgsService
40
{
41
#ifdef SIP_RUN
42
#include "
qgsserverrequest.h
"
43
#include "
qgsserverresponse.h
"
44
#endif
45
46
public
:
47
49
QgsService
();
50
52
virtual
~QgsService
() =
default
;
53
57
virtual
QString
name
()
const
= 0;
58
62
virtual
QString
version
()
const
= 0;
63
67
virtual
void
executeRequest
(
const
QgsServerRequest
&request,
68
QgsServerResponse
&response,
69
const
QgsProject
*project ) = 0;
70
};
71
72
#endif
73
QgsService
QgsService Class defining interfaces for QGIS server services.
Definition:
qgsservice.h:40
QgsServerRequest
QgsServerRequest Class defining request interface passed to services QgsService::executeRequest() met...
Definition:
qgsserverrequest.h:39
QgsService::executeRequest
virtual void executeRequest(const QgsServerRequest &request, QgsServerResponse &response, const QgsProject *project)=0
Execute the requests and set result in QgsServerRequest.
QgsProject
Encapsulates a QGIS project, including sets of map layers and their styles, layouts,...
Definition:
qgsproject.h:95
QgsService::name
virtual QString name() const =0
qgsserverrequest.h
qgsserverresponse.h
QgsService::~QgsService
virtual ~QgsService()=default
Destructor.
QgsService::QgsService
QgsService()
Constructor.
QgsService::version
virtual QString version() const =0
QgsServerResponse
QgsServerResponse Class defining response interface passed to services QgsService::executeRequest() m...
Definition:
qgsserverresponse.h:44
Generated on Sat Oct 24 2020 17:43:09 for QGIS API Documentation by
1.8.20