add note to doxygen comments

This commit is contained in:
Alexander Bruy 2016-11-17 18:41:01 +02:00
parent c1b6edc4fa
commit f77ab4d52b
3 changed files with 3 additions and 0 deletions

View File

@ -20,6 +20,7 @@
/** \ingroup analysis
* \class QgsDistanceStrategy
* \note added in QGIS 3.0
* \brief Strategy for caclucating edge cost based on its length. Should be
* used for finding shortest path between two points.
*/

View File

@ -36,6 +36,7 @@ class QgsGraphVertex;
/**
* \ingroup analysis
* \class QgsGraphEdge
* \note added in QGIS 3.0
* \brief This class implements a graph edge
*/
class ANALYSIS_EXPORT QgsGraphEdge

View File

@ -24,6 +24,7 @@
/**
* \ingroup analysis
* \class QgsStrategy
* \note added in QGIS 3.0
* \brief QgsStrategy defines strategy used for calculation of the edge cost. For example it can
* take into account travel distance, amount of time or money. Currently there are two strategies
* implemented in the analysis library: QgsDistanceStrategy and QgsSpeedStrategy.