Skip to content

Commit

Permalink
fix documentation test
Browse files Browse the repository at this point in the history
  • Loading branch information
root676 authored and nyalldawson committed Oct 24, 2021
1 parent e16f851 commit 6fc11b1
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/analysis/processing/qgsalgorithmshortestline.cpp
Expand Up @@ -20,6 +20,8 @@
#include "qgsalgorithmshortestline.h"
#include "qgsdistancearea.h"

///@cond PRIVATE

QString QgsShortestLineAlgorithm::name() const
{
return QStringLiteral( "shortestline" );
Expand Down Expand Up @@ -174,3 +176,5 @@ QVariantMap QgsShortestLineAlgorithm::processAlgorithm( const QVariantMap &param
outputs.insert( QStringLiteral( "OUTPUT" ), dest );
return outputs;
}

///@endcond
7 changes: 7 additions & 0 deletions src/analysis/processing/qgsalgorithmshortestline.h
Expand Up @@ -26,6 +26,11 @@
#include "qgsapplication.h"
#include "qgsprocessingalgorithm.h"

///@cond PRIVATE

/**
* Native Shortest Line between layers algorithm.
*/
class QgsShortestLineAlgorithm : public QgsProcessingAlgorithm
{

Expand Down Expand Up @@ -54,4 +59,6 @@ class QgsShortestLineAlgorithm : public QgsProcessingAlgorithm

};

///@endcond PRIVATE

#endif // QGSALGORITHMSHORTESTLINE_H

0 comments on commit 6fc11b1

Please sign in to comment.