@@ -63,6 +63,7 @@ typedef QgsSymbolLayerV2*( *QgsSymbolLayerV2CreateFromSldFunc )( QDomElement& );
63
63
class CORE_EXPORT QgsSymbolLayerV2Metadata : public QgsSymbolLayerV2AbstractMetadata
64
64
{
65
65
public:
66
+ // ! not available in python bindings
66
67
QgsSymbolLayerV2Metadata ( QString name, QString visibleName,
67
68
QgsSymbolV2::SymbolType type,
68
69
QgsSymbolLayerV2CreateFunc pfCreate,
@@ -73,6 +74,7 @@ class CORE_EXPORT QgsSymbolLayerV2Metadata : public QgsSymbolLayerV2AbstractMeta
73
74
, mCreateFromSldFunc ( NULL )
74
75
{}
75
76
77
+ // ! not available in python bindings
76
78
QgsSymbolLayerV2Metadata ( QString name, QString visibleName,
77
79
QgsSymbolV2::SymbolType type,
78
80
QgsSymbolLayerV2CreateFunc pfCreate,
@@ -84,10 +86,14 @@ class CORE_EXPORT QgsSymbolLayerV2Metadata : public QgsSymbolLayerV2AbstractMeta
84
86
, mCreateFromSldFunc ( pfCreateFromSld )
85
87
{}
86
88
89
+ // ! not available in python bindings
87
90
QgsSymbolLayerV2CreateFunc createFunction () const { return mCreateFunc ; }
91
+ // ! not available in python bindings
88
92
QgsSymbolLayerV2WidgetFunc widgetFunction () const { return mWidgetFunc ; }
93
+ // ! not available in python bindings
89
94
QgsSymbolLayerV2CreateFromSldFunc createFromSldFunction () const { return mCreateFromSldFunc ; }
90
95
96
+ // ! not available in python bindings
91
97
void setWidgetFunction ( QgsSymbolLayerV2WidgetFunc f ) { mWidgetFunc = f; }
92
98
93
99
virtual QgsSymbolLayerV2* createSymbolLayer ( const QgsStringMap& map ) { return mCreateFunc ? mCreateFunc ( map ) : NULL ; }
0 commit comments