Skip to content

Commit a5647c7

Browse files
committed
Added documentation for QgsDataItemProviderFromPlugin constructor
1 parent a6b6892 commit a5647c7

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

src/core/qgsdataitemproviderregistry.cpp

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,14 @@ typedef QList<QgsDataItemProvider *> *dataItemProviders_t();
3636
class QgsDataItemProviderFromPlugin : public QgsDataItemProvider
3737
{
3838
public:
39+
40+
/**
41+
* QgsDataItemProviderFromPlugin constructor
42+
* \param name plugin name
43+
* \param capabilitiesFunc function pointer to the data capabilities
44+
* \param dataItemFunc function pointer to the data items
45+
* \param handlesDirectoryPathFunc function pointer to handlesDirectoryPath
46+
*/
3947
QgsDataItemProviderFromPlugin( const QString &name, dataCapabilities_t *capabilitiesFunc, dataItem_t *dataItemFunc, handlesDirectoryPath_t *handlesDirectoryPathFunc )
4048
: mName( name )
4149
, mCapabilitiesFunc( capabilitiesFunc )

0 commit comments

Comments
 (0)