Skip to content

Commit

Permalink
layout
Browse files Browse the repository at this point in the history
  • Loading branch information
elpaso committed Jul 9, 2024
1 parent 40ddba2 commit c1c5851
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/core/auth/qgsauthconfigurationstorageregistry.h
Original file line number Diff line number Diff line change
Expand Up @@ -39,13 +39,13 @@ class CORE_EXPORT QgsAuthConfigurationStorageRegistry: public QObject
Q_OBJECT
public:

/**
* Creates a new QgsAuthConfigurationStorageRegistry instance.
*/
QgsAuthConfigurationStorageRegistry();

virtual ~QgsAuthConfigurationStorageRegistry();

QgsAuthConfigurationStorageRegistry( const QgsAuthConfigurationStorageRegistry & ) = delete;
QgsAuthConfigurationStorageRegistry &operator=( const QgsAuthConfigurationStorageRegistry & ) = delete;

/**
* Add an authentication configuration storage to the registry.
* The registry takes ownership of the storage object.
Expand All @@ -64,19 +64,19 @@ class CORE_EXPORT QgsAuthConfigurationStorageRegistry: public QObject
bool removeStorage( const QString &id );

/**
* Returns a list of all registered authentication configuration storages.
* Returns the list of all registered authentication configuration storages.
* \note This method must be called from the same thread the registry was created in.
*/
QList<QgsAuthConfigurationStorage *> storages() const;

/**
* Returns a list of all ready (and enabled) authentication configuration storage.
* Returns the list of all ready (and enabled) authentication configuration storage.
* \note This method must be called from the same thread the registry was created in.
*/
QList<QgsAuthConfigurationStorage *> readyStorages() const;

/**
* Return the storage with the specified \a id or NULL if not found in the registry.
* Returns the storage with the specified \a id or NULL if not found in the registry.
* \param id The id of the storage to retrieve
* \note This method must be called from the same thread the registry was created in.
*/
Expand Down

0 comments on commit c1c5851

Please sign in to comment.