Skip to content

Commit

Permalink
add Doxygen private conditions
Browse files Browse the repository at this point in the history
  • Loading branch information
Koyaani authored and github-actions[bot] committed Dec 16, 2021
1 parent 1dca0cf commit a9b443b
Show file tree
Hide file tree
Showing 7 changed files with 17 additions and 4 deletions.
2 changes: 2 additions & 0 deletions doc/CMakeLists.txt
Expand Up @@ -92,6 +92,7 @@ if(WITH_APIDOC)
${CMAKE_SOURCE_DIR}/src/core/providers/ogr
${CMAKE_SOURCE_DIR}/src/core/raster
${CMAKE_SOURCE_DIR}/src/core/scalebar
${CMAKE_SOURCE_DIR}/src/core/settings
${CMAKE_SOURCE_DIR}/src/core/simplify
${CMAKE_SOURCE_DIR}/src/core/symbology
${CMAKE_SOURCE_DIR}/src/core/textrenderer
Expand All @@ -100,6 +101,7 @@ if(WITH_APIDOC)
${CMAKE_SOURCE_DIR}/src/core/vectortile
${CMAKE_SOURCE_DIR}/src/gui
${CMAKE_SOURCE_DIR}/src/gui/annotations
${CMAKE_SOURCE_DIR}/src/gui/attributeformconfig
${CMAKE_SOURCE_DIR}/src/gui/attributetable
${CMAKE_SOURCE_DIR}/src/gui/auth
${CMAKE_SOURCE_DIR}/src/gui/callouts
Expand Down
4 changes: 4 additions & 0 deletions src/core/externalstorage/qgssimplecopyexternalstorage.cpp
Expand Up @@ -20,6 +20,8 @@

#include <QFileInfo>

///@cond PRIVATE

QgsSimpleCopyExternalStorageStoredContent::QgsSimpleCopyExternalStorageStoredContent( const QString &filePath, const QString &url, const QString &authcfg )
{
Q_UNUSED( authcfg );
Expand Down Expand Up @@ -116,3 +118,5 @@ QgsExternalStorageFetchedContent *QgsSimpleCopyExternalStorage::doFetch( const Q

return new QgsSimpleCopyExternalStorageFetchedContent( url );
}

///@endcond
2 changes: 1 addition & 1 deletion src/core/externalstorage/qgssimplecopyexternalstorage_p.h
Expand Up @@ -97,5 +97,5 @@ class QgsSimpleCopyExternalStorageFetchedContent : public QgsExternalStorageFetc
QString mResultFilePath;
};


///@endcond
#endif // QGSSIMPLECOPYEXTERNALSTORAGE_H
4 changes: 4 additions & 0 deletions src/core/externalstorage/qgswebdavexternalstorage.cpp
Expand Up @@ -25,6 +25,8 @@
#include <QPointer>
#include <QFileInfo>

///@cond PRIVATE

QgsWebDAVExternalStorageStoreTask::QgsWebDAVExternalStorageStoreTask( const QUrl &url, const QString &filePath, const QString &authCfg )
: QgsTask( tr( "Storing %1" ).arg( QFileInfo( filePath ).baseName() ) )
, mUrl( url )
Expand Down Expand Up @@ -199,3 +201,5 @@ QgsExternalStorageFetchedContent *QgsWebDAVExternalStorage::doFetch( const QStri

return new QgsWebDAVExternalStorageFetchedContent( fetchedContent );
}

///@endcond
2 changes: 1 addition & 1 deletion src/core/externalstorage/qgswebdavexternalstorage_p.h
Expand Up @@ -139,5 +139,5 @@ class QgsWebDAVExternalStorageStoreTask : public QgsTask
};



///@endcond
#endif // QGSWEBDAVEXTERNALSTORAGE_H
4 changes: 2 additions & 2 deletions src/core/providers/ogr/qgsgeopackagedataitems.cpp
Expand Up @@ -430,8 +430,6 @@ bool QgsGeoPackageVectorLayerItem::executeDeleteLayer( QString &errCause )
return true;
}

///@endcond


bool QgsGeoPackageCollectionItem::layerCollection() const
{
Expand All @@ -456,3 +454,5 @@ QgsMimeDataUtils::UriList QgsGeoPackageCollectionItem::mimeUris() const

return { collectionUri };
}

///@endcond
3 changes: 3 additions & 0 deletions src/gui/providers/qgspointcloudsourceselect.cpp
Expand Up @@ -21,6 +21,8 @@
#include "qgsproviderregistry.h"
#include "qgsprovidermetadata.h"

///@cond PRIVATE

QgsPointCloudSourceSelect::QgsPointCloudSourceSelect( QWidget *parent, Qt::WindowFlags fl, QgsProviderRegistry::WidgetMode widgetMode ):
QgsAbstractDataSourceWidget( parent, fl, widgetMode )
{
Expand Down Expand Up @@ -164,3 +166,4 @@ void QgsPointCloudSourceSelect::setProtocolWidgetsVisibility()
mAuthWarning->hide();
}

///@endcond

0 comments on commit a9b443b

Please sign in to comment.