Fix indent and documentation

This commit is contained in:
David Marteau 2017-01-06 21:10:29 +01:00
parent 92d3958370
commit bfc081d3dd
3 changed files with 9 additions and 5 deletions

View File

@ -25,9 +25,9 @@
class QgsServerResponse
{
%TypeHeaderCode
% TypeHeaderCode
#include "qgsserverresponse.h"
%End
% End
public:
//!constructor

View File

@ -65,6 +65,7 @@ class QgsOWSServer
const QgsAccessControl* mAccessControl;
#ifdef HAVE_SERVER_PYTHON_PLUGINS
/** Apply filter strings from the access control to the layers.
* @param layer the concerned layer
* @param originalLayerFilters the original layer filter

View File

@ -25,7 +25,6 @@
#include <QStringList>
#include <QPair>
#include <QColor>
#include <QPair>
#include <QHash>
#include "qgis_server.h"
@ -47,7 +46,11 @@ typedef QMultiMap< int, QgsColorBox > QgsColorBoxMap; // sum of pixels / color b
class SERVER_EXPORT QgsRequestHandler
{
public:
// QgsServerRequest and QgsServerResponse MUST live in the same scope
/** Constructor
*
* Note that QgsServerRequest and QgsServerResponse MUST live in the same scope
*/
explicit QgsRequestHandler( QgsServerRequest& request, QgsServerResponse& response );
~QgsRequestHandler();