21 lines
438 B
Python
21 lines
438 B
Python
# SPDX-License: LGPL-2.1-or-later
|
|
|
|
from __future__ import annotations
|
|
|
|
from Base.Metadata import export
|
|
|
|
from App.DocumentObject import DocumentObject
|
|
|
|
|
|
@export(
|
|
Include="Mod/TechDraw/App/DrawTemplate.h",
|
|
Namespace="TechDraw",
|
|
)
|
|
class DrawTemplate(DocumentObject):
|
|
"""
|
|
Feature for creating and manipulating Technical Drawing Templates
|
|
|
|
Author: Luke Parry (l.parry@warwick.ac.uk)
|
|
License: LGPL-2.1-or-later
|
|
"""
|