16 lines
317 B
Python
16 lines
317 B
Python
# SPDX-License-Identifier: LGPL-2.1-or-later
|
|
|
|
from __future__ import annotations
|
|
|
|
from DocumentObject import DocumentObject
|
|
|
|
|
|
class DocumentObjectGroup(DocumentObject):
|
|
"""
|
|
This class handles document objects in group
|
|
Author: Werner Mayer (wmayer@users.sourceforge.net)
|
|
Licence: LGPL
|
|
"""
|
|
|
|
...
|