QGIS API Documentation 4.0.0-Norrköping (1ddcee3d0e4)
Loading...
Searching...
No Matches
qgsexternalstorageregistry.h
Go to the documentation of this file.
1/***************************************************************************
2 qgsexternalstorageregistry.h
3 --------------------------------------
4 Date : March 2021
5 Copyright : (C) 2021 by Julien Cabieces
6 Email : julien dot cabieces at oslandia dot com
7 ***************************************************************************
8 * *
9 * This program is free software; you can redistribute it and/or modify *
10 * it under the terms of the GNU General Public License as published by *
11 * the Free Software Foundation; either version 2 of the License, or *
12 * (at your option) any later version. *
13 * *
14 ***************************************************************************/
15
16#ifndef QGSEXTERNALSTORAGEREGISTRY_H
17#define QGSEXTERNALSTORAGEREGISTRY_H
18
19#include "qgis_core.h"
20#include "qgis_sip.h"
21
22#include <QHash>
23#include <QList>
24
26
37{
38 public:
43
45
50 QgsExternalStorage *externalStorageFromType( const QString &type ) const;
51
55 QList<QgsExternalStorage *> externalStorages() const;
56
61
66
67 private:
68 QList< QgsExternalStorage * > mBackends;
69};
70
71#endif // QGSEXTERNALSTORAGEREGISTRY_H
QgsExternalStorage * externalStorageFromType(const QString &type) const
Returns external storage implementation if the storage type matches one.
void registerExternalStorage(QgsExternalStorage *storage)
Registers a storage backend and takes ownership of it.
QList< QgsExternalStorage * > externalStorages() const
Returns a list of registered project storage implementations.
QgsExternalStorageRegistry()
Constructor - creates a registry of external storage backends.
void unregisterExternalStorage(QgsExternalStorage *storage)
Unregisters a storage backend and destroys its instance.
Abstract interface for external storage - to be implemented by various backends and registered in Qgs...
#define SIP_TRANSFER
Definition qgis_sip.h:35