Added missing api docs

This commit is contained in:
Martin Dobias 2016-12-10 16:17:02 +08:00
parent d56a97d4fe
commit 64f1356cf3
4 changed files with 8 additions and 0 deletions

View File

@ -17,6 +17,7 @@ class QgsLayerTreeRegistryBridge : QObject
%End
public:
//! Create the instance that synchronizes given project with a layer tree root
explicit QgsLayerTreeRegistryBridge( QgsLayerTreeGroup* root, QgsProject* project, QObject *parent /TransferThis/ = 0 );
void setEnabled( bool enabled );

View File

@ -61,6 +61,9 @@ class QgsMapThemeCollection : QObject
};
/**
* Create map theme collection that handles themes of the given project.
*/
QgsMapThemeCollection( QgsProject* project );
/**

View File

@ -41,6 +41,7 @@ class CORE_EXPORT QgsLayerTreeRegistryBridge : public QObject
{
Q_OBJECT
public:
//! Create the instance that synchronizes given project with a layer tree root
explicit QgsLayerTreeRegistryBridge( QgsLayerTreeGroup* root, QgsProject* project, QObject *parent = nullptr );
void setEnabled( bool enabled ) { mEnabled = enabled; }

View File

@ -113,6 +113,9 @@ class CORE_EXPORT QgsMapThemeCollection : public QObject
friend class QgsMapThemeCollection;
};
/**
* Create map theme collection that handles themes of the given project.
*/
QgsMapThemeCollection( QgsProject* project );
/**