16 lines
366 B
Python
16 lines
366 B
Python
# SPDX-License-Identifier: LGPL-2.1-or-later
|
|
|
|
from __future__ import annotations
|
|
|
|
from GeoFeatureGroupExtension import GeoFeatureGroupExtension
|
|
|
|
|
|
class OriginGroupExtension(GeoFeatureGroupExtension):
|
|
"""
|
|
Author: Alexander Golubev (fatzer2@gmail.com)
|
|
Licence: LGPL
|
|
This class handles placable group of document objects with an Origin
|
|
"""
|
|
|
|
...
|