21 lines
449 B
Python
21 lines
449 B
Python
# SPDX-License: LGPL-2.1-or-later
|
|
|
|
from __future__ import annotations
|
|
|
|
from Base.Metadata import export
|
|
from Base.PyObjectBase import PyObjectBase
|
|
|
|
@export(
|
|
Include="Mod/Measure/Gui/QuickMeasure.h",
|
|
Namespace="MeasureGui",
|
|
Constructor=True,
|
|
Delete=True,
|
|
)
|
|
class QuickMeasure(PyObjectBase):
|
|
"""
|
|
Selection Observer for the QuickMeasure label.
|
|
|
|
Author: Ondsel (development@ondsel.com)
|
|
License: LGPL-2.1-or-later
|
|
"""
|