Skip to content

Commit 3c783fa

Browse files
authored
Merge pull request #1771 from su2code/improve_doxydocs
Improve doxygen documentation
2 parents bc6ef2a + 380f9f4 commit 3c783fa

100 files changed

Lines changed: 2932 additions & 2653 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

Common/doc/docmain.hpp

Lines changed: 0 additions & 90 deletions
This file was deleted.

Common/include/adt/CADTBaseClass.hpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@ using namespace std;
3838

3939
/*!
4040
* \class CADTBaseClass
41+
* \ingroup ADT
4142
* \brief Base class for storing an ADT in an arbitrary number of dimensions.
4243
* \author E. van der Weide
4344
*/

Common/include/adt/CADTComparePointClass.hpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@
3030

3131
/*!
3232
* \class CADTComparePointClass
33+
* \ingroup ADT
3334
* \brief Functor, used for the sorting of the points when building an ADT.
3435
* \author E. van der Weide
3536
*/

Common/include/adt/CADTElemClass.hpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@
3333

3434
/*!
3535
* \class CADTElemClass
36+
* \ingroup ADT
3637
* \brief Class for storing an ADT of (linear) elements in an arbitrary number of dimensions.
3738
* \author E. van der Weide
3839
* \version 7.4.0 "Blackbird"

Common/include/adt/CADTNodeClass.hpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@
3030

3131
/*!
3232
* \class CADTNodeClass
33+
* \ingroup ADT
3334
* \brief Class for storing the information needed in a node of an ADT.
3435
* \author E. van der Weide
3536
*/

Common/include/adt/CADTPointsOnlyClass.hpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@
3030

3131
/*!
3232
* \class CADTPointsOnlyClass
33+
* \ingroup ADT
3334
* \brief Class for storing an ADT of only points in an arbitrary number of dimensions.
3435
* \author E. van der Weide
3536
*/

Common/include/adt/CBBoxTargetClass.hpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@
3131

3232
/*!
3333
* \class CBBoxTargetClass
34+
* \ingroup ADT
3435
* \brief Class for storing the information of a possible bounding box candidate
3536
during a minimum distance search.
3637
* \author E. van der Weide

Common/include/containers/C2DContainer.hpp

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,9 @@
3434
#include <utility>
3535
#include <type_traits>
3636

37+
/// \addtogroup Containers
38+
/// @{
39+
3740
/*!
3841
* \enum StorageType
3942
* \brief Supported ways to flatten a matrix into an array.
@@ -635,3 +638,5 @@ using su2activematrix = su2matrix<su2double>;
635638

636639
using su2passivevector = su2vector<passivedouble>;
637640
using su2passivematrix = su2matrix<passivedouble>;
641+
642+
/// @}

Common/include/containers/CFastFindAndEraseQueue.hpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@
3535

3636
/*!
3737
* \class CFastFindAndEraseQueue
38+
* \ingroup Containers
3839
* \brief A queue-type container (push back, pop front), but with
3940
* fast deletion of arbitrary items (possibly in the middle).
4041
* \param[in] ItemType_ - Type of the stored items.

Common/include/containers/CFileReaderLUT.hpp

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,10 @@
3434
#include "../../../Common/include/linear_algebra/blas_structure.hpp"
3535
#include "../../../Common/include/toolboxes/CSquareMatrixCM.hpp"
3636

37+
/*!
38+
* \brief File reader for look up tables.
39+
* \ingroup LookUpInterp
40+
*/
3741
class CFileReaderLUT {
3842
protected:
3943
int rank;

0 commit comments

Comments
 (0)