Skip to content

Commit 7a38249

Browse files
author
wonder
committedJan 26, 2010
Added notes that the new stuff was added in v1.5.
git-svn-id: http://svn.osgeo.org/qgis/trunk/qgis@12835 c8812cc2-4d05-0410-92ff-de0c093fc19c

File tree

3 files changed

+9
-2
lines changed

3 files changed

+9
-2
lines changed
 

‎src/core/qgsmaplayer.h

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ class CORE_EXPORT QgsMapLayer : public QObject
4949
{
5050
VectorLayer,
5151
RasterLayer,
52-
PluginLayer
52+
PluginLayer // added in 1.5
5353
};
5454

5555
/** Constructor
@@ -344,7 +344,8 @@ class CORE_EXPORT QgsMapLayer : public QObject
344344

345345
protected:
346346

347-
/** set whether layer is valid or not - should be used in constructor */
347+
/** set whether layer is valid or not - should be used in constructor.
348+
\note added in v1.5 */
348349
void setValid( bool valid );
349350

350351
/** called by readXML(), used by children to read state specific to them from

‎src/core/qgspluginlayer.h

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@
1010
In order to be readable from project files, they should set these attributes in layer DOM node:
1111
"type" = "plugin"
1212
"name" = "your_layer_type"
13+
14+
\note added in v1.5
1315
*/
1416
class CORE_EXPORT QgsPluginLayer : public QgsMapLayer
1517
{

‎src/core/qgspluginlayerregistry.h

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,8 @@ class QgsPluginLayer;
2727

2828
/** \ingroup core
2929
class for creating plugin specific layers
30+
31+
\note added in v1.5
3032
*/
3133
class CORE_EXPORT QgsPluginLayerType
3234
{
@@ -51,6 +53,8 @@ class CORE_EXPORT QgsPluginLayerType
5153

5254
/** \ingroup core
5355
a registry of plugin layers types
56+
57+
\note added in v1.5
5458
*/
5559
class CORE_EXPORT QgsPluginLayerRegistry
5660
{

0 commit comments

Comments
 (0)
Please sign in to comment.