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

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

View File

@ -25,7 +25,6 @@
#include <QStringList> #include <QStringList>
#include <QPair> #include <QPair>
#include <QColor> #include <QColor>
#include <QPair>
#include <QHash> #include <QHash>
#include "qgis_server.h" #include "qgis_server.h"
@ -47,7 +46,11 @@ typedef QMultiMap< int, QgsColorBox > QgsColorBoxMap; // sum of pixels / color b
class SERVER_EXPORT QgsRequestHandler class SERVER_EXPORT QgsRequestHandler
{ {
public: 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 ); explicit QgsRequestHandler( QgsServerRequest& request, QgsServerResponse& response );
~QgsRequestHandler(); ~QgsRequestHandler();