mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-25 00:58:06 -05:00
21 lines
581 B
Plaintext
21 lines
581 B
Plaintext
|
|
class QgsDataItemProvider
|
|
{
|
|
%TypeHeaderCode
|
|
#include <qgsdataitemprovider.h>
|
|
%End
|
|
public:
|
|
virtual ~QgsDataItemProvider();
|
|
|
|
//! Human-readable name of the provider name
|
|
virtual QString name() = 0;
|
|
|
|
//! Return combination of flags from QgsDataProvider::DataCapabilities
|
|
virtual int capabilities() = 0;
|
|
|
|
//! Create a new instance of QgsDataItem (or null) for given path and parent item.
|
|
//! Caller takes responsibility of deleting created items.
|
|
virtual QgsDataItem* createDataItem( const QString& path, QgsDataItem* parentItem ) = 0 /Factory/;
|
|
|
|
};
|