Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Add brief tags
  • Loading branch information
pblottiere committed Jul 13, 2018
1 parent 9b7e84e commit 78daade
Show file tree
Hide file tree
Showing 7 changed files with 13 additions and 15 deletions.
3 changes: 1 addition & 2 deletions src/server/qgsservicenativeloader.cpp
Expand Up @@ -34,6 +34,7 @@ typedef void unloadHook_t( QgsServiceModule * );
/**
* \ingroup server
* \class QgsServiceNativeModuleEntry
* \brief Native module (location, the module itself and the unload function).
* \since QGIS 3.0
*/
class QgsServiceNativeModuleEntry
Expand Down Expand Up @@ -166,5 +167,3 @@ void QgsServiceNativeLoader::unloadModuleEntry( QgsServiceNativeModuleEntry *ent
QLibrary lib( entry->mLocation );
lib.unload();
}


6 changes: 3 additions & 3 deletions src/server/qgsservicenativeloader.h
Expand Up @@ -49,7 +49,7 @@ class SERVER_EXPORT QgsServiceNativeLoader
QgsServiceNativeLoader() = default;

/**
* Lead all medules from path
* Load all modules from path.
* \param modulePath the path to look for module
* \param registrar QgsServiceRegistry instance for registering services
* \param serverIface QgsServerInterface instarce
Expand All @@ -75,14 +75,14 @@ class SERVER_EXPORT QgsServiceNativeLoader
typedef QHash<QString, std::shared_ptr<QgsServiceNativeModuleEntry> > ModuleTable;

/**
* Find module
* Finds module.
* \param path the module path
* \returns a module hook entry
*/
QgsServiceNativeModuleEntry *findModuleEntry( const QString &path );

/**
* Unload medule hook
* Unloads module hook.
*/
void unloadModuleEntry( QgsServiceNativeModuleEntry *entry );

Expand Down
2 changes: 2 additions & 0 deletions src/server/services/wcs/qgswcs.cpp
Expand Up @@ -32,6 +32,7 @@ namespace QgsWcs
/**
* \ingroup server
* \class QgsWcs::Service
* \brief OGC web service specialised for WCS
* \since QGIS 3.0
*/
class Service: public QgsService
Expand Down Expand Up @@ -105,6 +106,7 @@ namespace QgsWcs
/**
* \ingroup server
* \class QgsWcsModule
* \brief Service module specialised for WCS
* \since QGIS 3.0
*/
class QgsWcsModule: public QgsServiceModule
Expand Down
2 changes: 1 addition & 1 deletion src/server/services/wcs/qgswcsserviceexception.h
Expand Up @@ -28,7 +28,7 @@ namespace QgsWcs
/**
* \ingroup server
* \class QgsWcs::QgsServiceException
* \brief Exception class for WFS service exceptions.
* \brief Exception class for WFS services
* \since QGIS 3.0
*/
class QgsServiceException : public QgsOgcServiceException
Expand Down
2 changes: 2 additions & 0 deletions src/server/services/wfs/qgswfs.cpp
Expand Up @@ -38,6 +38,7 @@ namespace QgsWfs
/**
* \ingroup server
* \class QgsWfs::Service
* \brief OGC web service specialised for WFS
* \since QGIS 3.0
*/
class Service: public QgsService
Expand Down Expand Up @@ -129,6 +130,7 @@ namespace QgsWfs
/**
* \ingroup server
* \class QgsWfsModule
* \brief Service module specialised for WFS
* \since QGIS 3.0
*/
class QgsWfsModule: public QgsServiceModule
Expand Down
2 changes: 2 additions & 0 deletions src/server/services/wms/qgswms.cpp
Expand Up @@ -41,6 +41,7 @@ namespace QgsWms
/**
* \ingroup server
* \class QgsWms::Service
* \brief OGC web service specialised for WMS
* \since QGIS 3.0
*/
class Service: public QgsService
Expand Down Expand Up @@ -161,6 +162,7 @@ namespace QgsWms
/**
* \ingroup server
* \class QgsWmsModule
* \brief Service module specialised for WMS
* \since QGIS 3.0
*/
class QgsWmsModule: public QgsServiceModule
Expand Down
11 changes: 2 additions & 9 deletions src/server/services/wms/qgswmsrenderer.h
Expand Up @@ -59,20 +59,13 @@ class QPainter;
class QStandardItem;
class QgsLayerTreeGroup;

/**
* This class handles requestsi that share rendering:
*
* This includes
* - getfeatureinfo
* - getmap
* - getlegendgraphics
* - getprint
*/
namespace QgsWms
{

/**
* \ingroup server
* \class QgsWms::QgsRenderer
* \brief Map renderer for WMS requests
* \since QGIS 3.0
*/
class QgsRenderer
Expand Down

0 comments on commit 78daade

Please sign in to comment.