QGIS API Documentation  3.14.0-Pi (9f7028fd23)
qgswfsdescribefeaturetype.h
Go to the documentation of this file.
1 /***************************************************************************
2  qgswfsdescribefeaturetype.h
3  -------------------------
4  begin : December 20 , 2016
5  copyright : (C) 2007 by Marco Hugentobler (original code)
6  (C) 2012 by RenĂ©-Luc D'Hont (original code)
7  (C) 2014 by Alessandro Pasotti (original code)
8  (C) 2017 by David Marteau
9  email : marco dot hugentobler at karto dot baug dot ethz dot ch
10  a dot pasotti at itopen dot it
11  david dot marteau at 3liz dot com
12  ***************************************************************************/
13 
14 /***************************************************************************
15  * *
16  * This program is free software; you can redistribute it and/or modify *
17  * it under the terms of the GNU General Public License as published by *
18  * the Free Software Foundation; either version 2 of the License, or *
19  * (at your option) any later version. *
20  * *
21  ***************************************************************************/
22 #ifndef QGSWFSDESCRIBEFEATURETYPE_H
23 #define QGSWFSDESCRIBEFEATURETYPE_H
24 
25 
26 #include <QDomDocument>
27 #include <QDomElement>
28 
29 namespace QgsWfs
30 {
31  void setSchemaLayer( QDomElement &parentElement, QDomDocument &doc, const QgsVectorLayer *layer );
32 
36  QDomDocument createDescribeFeatureTypeDocument( QgsServerInterface *serverIface, const QgsProject *project, const QString &version,
37  const QgsServerRequest &request );
38 
42  void writeDescribeFeatureType( QgsServerInterface *serverIface, const QgsProject *project, const QString &version,
43  const QgsServerRequest &request, QgsServerResponse &response );
44 
45 } // namespace QgsWfs
46 
47 #endif
48 
QgsWfs::writeDescribeFeatureType
void writeDescribeFeatureType(QgsServerInterface *serverIface, const QgsProject *project, const QString &version, const QgsServerRequest &request, QgsServerResponse &response)
Output WFS GetCapabilities response.
Definition: qgswfsdescribefeaturetype.cpp:52
QgsServerRequest
Definition: qgsserverrequest.h:38
QgsProject
Definition: qgsproject.h:92
QgsWfs
WMS implementation.
Definition: qgswfs.cpp:35
QgsVectorLayer
Definition: qgsvectorlayer.h:385
QgsWfs::createDescribeFeatureTypeDocument
QDomDocument createDescribeFeatureTypeDocument(QgsServerInterface *serverIface, const QgsProject *project, const QString &version, const QgsServerRequest &request)
Create get capabilities document.
Definition: qgswfsdescribefeaturetype.cpp:86
QgsWfs::setSchemaLayer
void setSchemaLayer(QDomElement &parentElement, QDomDocument &doc, const QgsVectorLayer *layer)
Definition: qgswfsdescribefeaturetype.cpp:197
QgsServerInterface
Definition: qgsserverinterface.h:60
QgsServerResponse
Definition: qgsserverresponse.h:43