Dummycontent

This commit is contained in:
Michael Otto
2025-11-10 15:22:51 +01:00
parent f676da1319
commit f28611530b
6 changed files with 457 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