22 lines
458 B
Python
22 lines
458 B
Python
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 |