@@ -42,13 +42,13 @@ class CORE_EXPORT Qgis
42
42
public:
43
43
// Version constants
44
44
//
45
- // Version string
45
+ // ! Version string
46
46
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
48
48
static const int QGIS_VERSION_INT;
49
- // Release name
49
+ // ! Release name
50
50
static QString QGIS_RELEASE_NAME;
51
- // The development version
51
+ // ! The development version
52
52
static const char * QGIS_DEV_VERSION;
53
53
54
54
// Enumerations
@@ -59,22 +59,20 @@ class CORE_EXPORT Qgis
59
59
*/
60
60
enum DataType
61
61
{
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
78
76
};
79
77
80
78
// ! User defined event types
0 commit comments