erste Version der Oberfläche zum Speichern der Variablen

This commit is contained in:
Michael Otto
2025-10-09 10:16:54 +02:00
parent d34efa99b4
commit 635a3ba122
6 changed files with 331 additions and 0 deletions

22
main.py Normal file
View 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