forked from AG_QGIS/Plugin_SN_Basis
erste Version der Oberfläche zum Speichern der Variablen
This commit is contained in:
22
main.py
Normal file
22
main.py
Normal file
@@ -0,0 +1,22 @@
|
||||
import os
|
||||
|
||||
class lnoSachsenBasis:
|
||||
"""
|
||||
Plugin-Klasse für Basisfunktionen. Stellt Funktionen und Klassen für andere Plugins bereit.
|
||||
"""
|
||||
|
||||
def __init__(self, iface):
|
||||
self.iface = iface
|
||||
self.plugin_dir = os.path.dirname(__file__)
|
||||
|
||||
def initGui(self):
|
||||
"""
|
||||
Keine GUI-Integration nötig.
|
||||
"""
|
||||
pass
|
||||
|
||||
def unload(self):
|
||||
"""
|
||||
Keine GUI-Elemente zu entfernen.
|
||||
"""
|
||||
pass
|
||||
Reference in New Issue
Block a user