Skip to content

Commit 7c01d2f

Browse files
committedSep 25, 2017
Fix some doxygen warnings
1 parent 882a3eb commit 7c01d2f

File tree

7 files changed

+19
-5
lines changed

7 files changed

+19
-5
lines changed
 

‎src/3d/chunks/chunkboundsentity.cpp

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,6 @@ class LineMeshGeometry : public Qt3DRender::QGeometry
3030

3131
};
3232

33-
/// @endcond
3433

3534
LineMeshGeometry::LineMeshGeometry( Qt3DCore::QNode *parent )
3635
: Qt3DRender::QGeometry( parent )
@@ -71,7 +70,6 @@ void LineMeshGeometry::setVertices( QList<QVector3D> vertices )
7170

7271
// ----------------
7372

74-
///@cond PRIVATE
7573

7674
//! Geometry renderer for axis aligned bounding boxes - draws a box edges as lines
7775
class AABBMesh : public Qt3DRender::QGeometryRenderer
@@ -85,7 +83,6 @@ class AABBMesh : public Qt3DRender::QGeometryRenderer
8583
LineMeshGeometry *_lineMeshGeo;
8684
};
8785

88-
/// @endcond
8986

9087
AABBMesh::AABBMesh( Qt3DCore::QNode *parent )
9188
: Qt3DRender::QGeometryRenderer( parent )
@@ -128,3 +125,5 @@ void ChunkBoundsEntity::setBoxes( const QList<AABB> &bboxes )
128125
{
129126
aabbMesh->setBoxes( bboxes );
130127
}
128+
129+
/// @endcond

‎src/3d/chunks/chunkboundsentity.h

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@
66
class AABB;
77
class AABBMesh;
88

9+
///@cond PRIVATE
10+
911
/** \ingroup 3d
1012
* Draws bounds of axis aligned bounding boxes
1113
* \since QGIS 3.0
@@ -23,4 +25,6 @@ class ChunkBoundsEntity : public Qt3DCore::QEntity
2325
AABBMesh *aabbMesh;
2426
};
2527

28+
/// @endcond
29+
2630
#endif // CHUNKBOUNDSENTITY_H

‎src/3d/symbols/qgsline3dsymbol_p.cpp

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
#include "qgsmultipolygon.h"
1111
#include "qgsgeos.h"
1212

13+
/// @cond PRIVATE
1314

1415
QgsLine3DSymbolEntity::QgsLine3DSymbolEntity( const Qgs3DMapSettings &map, QgsVectorLayer *layer, const QgsLine3DSymbol &symbol, Qt3DCore::QNode *parent )
1516
: Qt3DCore::QEntity( parent )
@@ -133,3 +134,5 @@ Qt3DRender::QGeometryRenderer *QgsLine3DSymbolEntityNode::renderer( const Qgs3DM
133134

134135
return renderer;
135136
}
137+
138+
/// @endcond

‎src/3d/symbols/qgspoint3dsymbol_p.cpp

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@
3333
#include "qgspoint.h"
3434
#include "qgs3dutils.h"
3535

36+
/// @cond PRIVATE
3637

3738
QgsPoint3DSymbolEntity::QgsPoint3DSymbolEntity( const Qgs3DMapSettings &map, QgsVectorLayer *layer, const QgsPoint3DSymbol &symbol, Qt3DCore::QNode *parent )
3839
: Qt3DCore::QEntity( parent )
@@ -377,3 +378,5 @@ Qt3DCore::QTransform *QgsPoint3DSymbolModelEntityFactory::transform( const QVect
377378
tr->setTranslation( position + tr->translation() );
378379
return tr;
379380
}
381+
382+
/// @endcond

‎src/3d/symbols/qgspolygon3dsymbol_p.cpp

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
#include "qgsmultipolygon.h"
1313

1414

15+
/// @cond PRIVATE
1516

1617
QgsPolygon3DSymbolEntity::QgsPolygon3DSymbolEntity( const Qgs3DMapSettings &map, QgsVectorLayer *layer, const QgsPolygon3DSymbol &symbol, Qt3DCore::QNode *parent )
1718
: Qt3DCore::QEntity( parent )
@@ -142,3 +143,5 @@ Qt3DRender::QGeometryRenderer *QgsPolygon3DSymbolEntityNode::renderer( const Qgs
142143

143144
return renderer;
144145
}
146+
147+
/// @endcond

‎src/3d/terrain/flatterraingenerator.cpp

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,6 @@ class FlatTerrainChunkLoader : public TerrainChunkLoader
2424
Qt3DExtras::QPlaneGeometry *mTileGeometry = nullptr;
2525
};
2626

27-
/// @endcond
28-
2927

3028
//---------------
3129

@@ -75,6 +73,7 @@ Qt3DCore::QEntity *FlatTerrainChunkLoader::createEntity( Qt3DCore::QEntity *pare
7573
return entity;
7674
}
7775

76+
/// @endcond
7877

7978
// ---------------
8079

‎src/3d/terrain/terrain.cpp

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -132,6 +132,7 @@ void Terrain::connectToLayersRepaintRequest()
132132

133133
// -----------
134134

135+
///@cond PRIVATE
135136

136137
TerrainMapUpdateJob::TerrainMapUpdateJob( MapTextureGenerator *mapTextureGenerator, ChunkNode *node )
137138
: ChunkQueueJob( node )
@@ -159,3 +160,5 @@ void TerrainMapUpdateJob::onTileReady( int jobId, const QImage &image )
159160
emit finished();
160161
}
161162
}
163+
164+
/// @endcond

0 commit comments

Comments
 (0)
Please sign in to comment.