17 lines
351 B
Python
17 lines
351 B
Python
from Base.Metadata import export
|
|
|
|
from App.DocumentObject import DocumentObject
|
|
|
|
@export(
|
|
Include="Mod/Measure/App/MeasureBase.h",
|
|
Namespace="Measure",
|
|
Constructor=True,
|
|
)
|
|
class MeasureBase(DocumentObject):
|
|
"""
|
|
User documentation here
|
|
|
|
Author: David Friedli(hlorus) (david@friedli-be.ch)
|
|
License: LGPL-2.1-or-later
|
|
"""
|