Skip to content

Commit

Permalink
fix Doxygen warnings, documentation update
Browse files Browse the repository at this point in the history
  • Loading branch information
stopa85milk committed Jun 1, 2011
1 parent 2670900 commit 79f3911
Show file tree
Hide file tree
Showing 8 changed files with 20 additions and 13 deletions.
5 changes: 5 additions & 0 deletions doc/modules.dox
Expand Up @@ -17,3 +17,8 @@ high level tools for carrying out spatial analysis on vector and raster data.
*/

/** @defgroup MapComposer */

/** @defgroup networkanalysis QGIS network analysis library.

The network analysis library provides high level tool for build topology and analysis it.
*/
4 changes: 3 additions & 1 deletion src/analysis/network/qgsedgeproperter.h
Expand Up @@ -24,8 +24,10 @@
#include <qgslabel.h>

/**
* \ingroup networkanalysis
* \class QgsEdgeProperter
* \brief QgsEdgeProperter is a strategy pattern. You can use it for customize edge property.
* \brief QgsEdgeProperter is a strategy pattern.
* You can use it for customize edge property. For example look at QgsDistanceEdgeProperter or src/plugins/roadgraph/speedproperter.h
*/
class ANALYSIS_EXPORT QgsEdgeProperter
{
Expand Down
6 changes: 3 additions & 3 deletions src/analysis/network/qgsgraph.h
Expand Up @@ -34,7 +34,7 @@
class QgsGraphVertex;

/**
* \ingroup analysis
* \ingroup networkanalysis
* \class QgsGraphEdge
* \brief This class implement a graph edge
*/
Expand Down Expand Up @@ -78,7 +78,7 @@ class ANALYSIS_EXPORT QgsGraphArc
typedef QList< int > QgsGraphArcIdList;

/**
* \ingroup analysis
* \ingroup networkanalysis
* \class QgsGraphVertex
* \brief This class implement a graph vertex
*/
Expand Down Expand Up @@ -120,7 +120,7 @@ class ANALYSIS_EXPORT QgsGraphVertex
};

/**
* \ingroup analysis
* \ingroup networkanalysis
* \class QgsGraph
* \brief Mathematics graph representation
*/
Expand Down
4 changes: 2 additions & 2 deletions src/analysis/network/qgsgraphanalyzer.h
@@ -1,5 +1,5 @@
/***************************************************************************
qgsgraphalyzer.h - QGIS Tools for vector geometry analysis
qgsgraphalyzer.h - QGIS Tools for graph analysis
-------------------
begin : 14 april 2010
copyright : (C) Sergey Yakushev
Expand All @@ -24,7 +24,7 @@
// forward-declaration
class QgsGraph;

/** \ingroup analysis
/** \ingroup networkanalysis
* The QGis class provides graph analysis functions
*/

Expand Down
2 changes: 1 addition & 1 deletion src/analysis/network/qgsgraphbuilder.h
Expand Up @@ -28,7 +28,7 @@ class QgsCoordinateTransform;
class QgsGraph;

/**
* \ingroup analysis
* \ingroup networkanalysis
* \class QgsGraphBuilder
* \brief This class making the QgsGraph object
*/
Expand Down
2 changes: 1 addition & 1 deletion src/analysis/network/qgsgraphbuilderintr.h
Expand Up @@ -27,7 +27,7 @@
//forward declarations

/**
* \ingroup analysis
* \ingroup networkanalysis
* \class QgsGraphBuilderInterface
* \brief Determine interface for creating a graph. Contains the settings of the graph. QgsGraphBuilder and QgsGraphDirector is a Builder pattern
*/
Expand Down
2 changes: 1 addition & 1 deletion src/analysis/network/qgsgraphdirector.h
Expand Up @@ -28,7 +28,7 @@
class QgsGraphBuilderInterface;

/**
* \ingroup analysis
* \ingroup networkanalysis
* \class QgsGraphDirector
* \brief Determine making the graph. QgsGraphBuilder and QgsGraphDirector is a builder patter.
*/
Expand Down
8 changes: 4 additions & 4 deletions src/analysis/network/qgslinevectorlayerdirector.h
Expand Up @@ -27,7 +27,7 @@ class QgsGraphBuilderInterface;
class QgsVectorLayer;

/**
* \ingroup analysis
* \ingroup networkanalysis
* \class QgsLineVectorLayerDirector
* \brief Determine making the graph from vector line layer
*/
Expand All @@ -46,12 +46,12 @@ class QgsLineVectorLayerDirector : public QgsGraphDirector
* @param layerId
* @param directionFieldId feield contain road direction value
* @param directDirectionValue value for one-way road
* @param reverseDirection value for reverse one-way road
* @param reverseDirectionValue value for reverse one-way road
* @param bothDirectionValue value for road
* @param defaultDirection 1 - direct direction, 2 - reverse direction, 3 - both direction
*/
QgsLineVectorLayerDirector( const QString& layerId,
int directionFiledId,
int directionFieldId,
const QString& directDirectionValue,
const QString& reverseDirectionValue,
const QString& bothDirectionValue,
Expand All @@ -61,7 +61,7 @@ class QgsLineVectorLayerDirector : public QgsGraphDirector
//! Destructor
virtual ~QgsLineVectorLayerDirector();

/**
/*
* MANDATORY DIRECTOR PROPERTY DECLARATION
*/
void makeGraph( QgsGraphBuilderInterface *builder,
Expand Down

0 comments on commit 79f3911

Please sign in to comment.