File size: 317 Bytes
985c397 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | # 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
"""
...
|