mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-24 00:47:57 -05:00
22 lines
465 B
Plaintext
22 lines
465 B
Plaintext
|
|
||
|
/** \ingroup gui
|
||
|
Handler for missing layers within project.
|
||
|
|
||
|
Gives user a chance to select path to the missing layers.
|
||
|
|
||
|
@note added in 1.4
|
||
|
*/
|
||
|
class QgsProjectBadLayerGuiHandler : QObject, QgsProjectBadLayerHandler
|
||
|
{
|
||
|
%TypeHeaderCode
|
||
|
#include <qgsprojectbadlayerguihandler.h>
|
||
|
%End
|
||
|
|
||
|
public:
|
||
|
QgsProjectBadLayerGuiHandler();
|
||
|
|
||
|
/** implementation of the handler */
|
||
|
virtual void handleBadLayers( QList<QDomNode> layers, QDomDocument projectDom );
|
||
|
|
||
|
};
|