Files
Plugin_SN_Verfahrensgebiet/__init__.py
T
2026-04-20 14:33:13 +02:00

18 lines
478 B
Python
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
"""sn_verfahrensgebiet QGIS-Plugin für Verfahrensgebiets-Management.
Verwaltet die Abgrenzung und Verwaltung von Verfahrensgebieten.
"""
def classFactory(iface):
"""Factory-Funktion für QGIS.
Wird von QGIS aufgerufen, um die Plugin-Instanz zu erstellen.
Args:
iface: QGIS-Schnittstellenobjekt
Returns:
Verfahrensgebiet: Instanziiertes Plugin
"""
from .main import Verfahrensgebiet
return Verfahrensgebiet(iface)