Skip to content

Commit 3ef8e6a

Browse files
committed
Minor doxygen improvements
1 parent af55c02 commit 3ef8e6a

File tree

1 file changed

+18
-20
lines changed

1 file changed

+18
-20
lines changed

src/core/qgis.h

Lines changed: 18 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -42,13 +42,13 @@ class CORE_EXPORT Qgis
4242
public:
4343
// Version constants
4444
//
45-
// Version string
45+
//! Version string
4646
static QString QGIS_VERSION;
47-
// Version number used for comparing versions using the "Check QGIS Version" function
47+
//! Version number used for comparing versions using the "Check QGIS Version" function
4848
static const int QGIS_VERSION_INT;
49-
// Release name
49+
//! Release name
5050
static QString QGIS_RELEASE_NAME;
51-
// The development version
51+
//! The development version
5252
static const char* QGIS_DEV_VERSION;
5353

5454
// Enumerations
@@ -59,22 +59,20 @@ class CORE_EXPORT Qgis
5959
*/
6060
enum DataType
6161
{
62-
/** Unknown or unspecified type */ UnknownDataType = 0,
63-
/** Eight bit unsigned integer (quint8) */ Byte = 1,
64-
/** Sixteen bit unsigned integer (quint16) */ UInt16 = 2,
65-
/** Sixteen bit signed integer (qint16) */ Int16 = 3,
66-
/** Thirty two bit unsigned integer (quint32) */ UInt32 = 4,
67-
/** Thirty two bit signed integer (qint32) */ Int32 = 5,
68-
/** Thirty two bit floating point (float) */ Float32 = 6,
69-
/** Sixty four bit floating point (double) */ Float64 = 7,
70-
/** Complex Int16 */ CInt16 = 8,
71-
/** Complex Int32 */ CInt32 = 9,
72-
/** Complex Float32 */ CFloat32 = 10,
73-
/** Complex Float64 */ CFloat64 = 11,
74-
/** Color, alpha, red, green, blue, 4 bytes the same as
75-
QImage::Format_ARGB32 */ ARGB32 = 12,
76-
/** Color, alpha, red, green, blue, 4 bytes the same as
77-
QImage::Format_ARGB32_Premultiplied */ ARGB32_Premultiplied = 13
62+
UnknownDataType = 0, //!< Unknown or unspecified type
63+
Byte = 1, //!< Eight bit unsigned integer (quint8)
64+
UInt16 = 2, //!< Sixteen bit unsigned integer (quint16)
65+
Int16 = 3, //!< Sixteen bit signed integer (qint16)
66+
UInt32 = 4, //!< Thirty two bit unsigned integer (quint32)
67+
Int32 = 5, //!< Thirty two bit signed integer (qint32)
68+
Float32 = 6, //!< Thirty two bit floating point (float)
69+
Float64 = 7, //!< Sixty four bit floating point (double)
70+
CInt16 = 8, //!< Complex Int16
71+
CInt32 = 9, //!< Complex Int32
72+
CFloat32 = 10, //!< Complex Float32
73+
CFloat64 = 11, //!< Complex Float64
74+
ARGB32 = 12, //!< Color, alpha, red, green, blue, 4 bytes the same as QImage::Format_ARGB32
75+
ARGB32_Premultiplied = 13 //!< Color, alpha, red, green, blue, 4 bytes the same as QImage::Format_ARGB32_Premultiplied
7876
};
7977

8078
//! User defined event types

0 commit comments

Comments
 (0)